ci: drop Go 1.24 matrix, only test 1.26

This commit is contained in:
2026-03-02 00:10:26 +00:00
parent e5f7cc7fae
commit f338b2c662

View File

@@ -9,14 +9,11 @@ on:
jobs: jobs:
test: test:
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy:
matrix:
go-version: ["1.24", "1.26"]
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- uses: actions/setup-go@v5 - uses: actions/setup-go@v5
with: with:
go-version: ${{ matrix.go-version }} go-version: "1.26"
- run: go test -race -count=1 ./... - run: go test -race -count=1 ./...
- run: go vet ./... - run: go vet ./...
- run: go install honnef.co/go/tools/cmd/staticcheck@latest && staticcheck ./... - run: go install honnef.co/go/tools/cmd/staticcheck@latest && staticcheck ./...