fix(app): show modal content status line while modal is open #522
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 ./... |