We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a9aa042 commit 0ab5c04Copy full SHA for 0ab5c04
.github/workflows/ci.yml
@@ -10,7 +10,7 @@ jobs:
10
test:
11
strategy:
12
matrix:
13
- go: [ "1.23", "1.22" ]
+ go: [ "1.24", "1.23", "1.22" ]
14
os: [ ubuntu-24.04, ubuntu-22.04 ]
15
name: Tests Go ${{ matrix.go }} on ${{ matrix.os }} # This name is used in main branch protection rules
16
runs-on: ${{ matrix.os }}
@@ -83,7 +83,7 @@ jobs:
83
- name: Install Go
84
uses: actions/setup-go@v5
85
with:
86
- go-version: "1.23"
+ go-version: stable
87
- name: Run tests
88
run: |
89
# separate test to avoid RESET MASTER conflict
@@ -121,7 +121,7 @@ jobs:
121
122
123
124
125
126
- name: Build on ${{ matrix.os }}/${{ matrix.arch }}
127
run: GOARCH=${{ matrix.arch }} GOOS=${{ matrix.os }} go build ./...
0 commit comments