Skip to content

Commit b815465

Browse files
actions: Simplify test action
1 parent 713037d commit b815465

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,17 @@ jobs:
1111
runs-on: ${{ matrix.os }}
1212
strategy:
1313
matrix:
14-
os: [ubuntu-latest, macos-latest]
15-
go-version: [1.21]
14+
os:
15+
- ubuntu-latest
16+
- macos-latest
1617

1718
steps:
1819
- uses: actions/checkout@v4
1920

2021
- name: Set up Go
21-
uses: actions/setup-go@v5
22+
uses: actions/setup-go@v6
2223
with:
23-
go-version: ${{ matrix.go-version }}
24+
go-version: stable
2425

2526
- name: Run tests
2627
run: make test

0 commit comments

Comments
 (0)