We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 713037d commit b815465Copy full SHA for b815465
.github/workflows/test.yml
@@ -11,16 +11,17 @@ jobs:
11
runs-on: ${{ matrix.os }}
12
strategy:
13
matrix:
14
- os: [ubuntu-latest, macos-latest]
15
- go-version: [1.21]
+ os:
+ - ubuntu-latest
16
+ - macos-latest
17
18
steps:
19
- uses: actions/checkout@v4
20
21
- name: Set up Go
- uses: actions/setup-go@v5
22
+ uses: actions/setup-go@v6
23
with:
- go-version: ${{ matrix.go-version }}
24
+ go-version: stable
25
26
- name: Run tests
27
run: make test
0 commit comments