Skip to content

fix(app): show modal content status line while modal is open #522

fix(app): show modal content status line while modal is open

fix(app): show modal content status line while modal is open #522

Workflow file for this run

name: CI
on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
permissions:
contents: read
jobs:
ci:
runs-on: ubuntu-latest
env:
CGO_ENABLED: 0
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version-file: 'go.mod'
cache: true
- name: Check generated files
run: |
go generate ./...
git diff --exit-code || (echo "Generated files are out of date. Run 'task gen-imports' and commit." && exit 1)
- name: Build
run: go build ./...
- name: Lint
uses: golangci/golangci-lint-action@v9
with:
install-mode: goinstall
version: v2.8.0
args: --timeout=5m
- name: Test
run: go test ./...