We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a167b40 commit 2570a44Copy full SHA for 2570a44
.github/workflows/test.yml
@@ -12,9 +12,17 @@ concurrency:
12
jobs:
13
test:
14
strategy:
15
+ fail-fast: false
16
matrix:
- go-version: [1.21.x, 1.22.x, 1.23.x]
17
- os: [ubuntu-latest, macos-latest, windows-latest]
+ go-version:
18
+ - 1.21.x
19
+ - 1.22.x
20
+ - 1.23.x
21
+ - 1.24.x
22
+ os:
23
+ - ubuntu-latest
24
+ - macos-latest
25
+ - windows-latest
26
runs-on: ${{ matrix.os }}
27
steps:
28
- name: Checkout code
@@ -60,7 +68,7 @@ jobs:
60
68
- name: Install Go
61
69
uses: actions/setup-go@v5
62
70
with:
63
- go-version: 1.23.x
71
+ go-version: stable
64
72
cache: true
65
73
cache-dependency-path: go.sum
66
74
0 commit comments