Skip to content

fix: release flights after compute panic #42

fix: release flights after compute panic

fix: release flights after compute panic #42

Workflow file for this run

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