fix: release flights after compute panic #42
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 | |
| pull_request: | |
| branches: | |
| - main | |
| permissions: | |
| contents: read | |
| jobs: | |
| verify: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Set up Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| # Use a patched toolchain for security scanning; go.mod still defines | |
| # the module compatibility target. | |
| go-version: "1.25.13" | |
| check-latest: true | |
| cache: true | |
| cache-dependency-path: | | |
| go.sum | |
| adapters/redis/go.sum | |
| - name: Install security and lint tools | |
| run: | | |
| go install golang.org/x/vuln/cmd/govulncheck@latest | |
| go install github.com/golangci/golangci-lint/v2/cmd/golangci-lint@latest | |
| - name: Run full verification suite | |
| env: | |
| REQUIRE_OPTIONAL_TOOLS: "1" | |
| run: scripts/verify-ci-local.sh |