Skip to content

Commit

Permalink
ci: Use go-version: '>=1.20' instead of matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
subpop committed Feb 28, 2024
1 parent 2b683c3 commit 347d9e7
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,11 @@ on:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go: ["1.20", "1.21"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
go-version: '>=1.20'
- run: go build -v ./...
- run: go test -v ./...
- run: go vet -v ./...

0 comments on commit 347d9e7

Please sign in to comment.