Skip to content

Commit

Permalink
Switch to aliases for Go versions in CI (#919)
Browse files Browse the repository at this point in the history
  • Loading branch information
cinchurge authored May 1, 2024
1 parent c54d098 commit 49a0061
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,18 @@ jobs:
working-directory: ${{ env.GOPATH }}/src/github.com/${{ github.repository }}
strategy:
matrix:
go: ["1.21.x"]
go: ["stable", "oldstable"]
include:
- go: 1.21.x
- go: "stable"
latest: true
COVERAGE: "yes"
LINT: "yes"
- go: "oldstable"
LINT: "yes"

steps:
- name: Setup Go
uses: actions/setup-go@v2
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}

Expand Down

0 comments on commit 49a0061

Please sign in to comment.