Skip to content

Commit 49a0061

Browse files
authored
Switch to aliases for Go versions in CI (#919)
1 parent c54d098 commit 49a0061

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/tests.yaml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,18 @@ jobs:
1818
working-directory: ${{ env.GOPATH }}/src/github.com/${{ github.repository }}
1919
strategy:
2020
matrix:
21-
go: ["1.21.x"]
21+
go: ["stable", "oldstable"]
2222
include:
23-
- go: 1.21.x
23+
- go: "stable"
2424
latest: true
2525
COVERAGE: "yes"
2626
LINT: "yes"
27+
- go: "oldstable"
28+
LINT: "yes"
2729

2830
steps:
2931
- name: Setup Go
30-
uses: actions/setup-go@v2
32+
uses: actions/setup-go@v5
3133
with:
3234
go-version: ${{ matrix.go }}
3335

0 commit comments

Comments
 (0)