Skip to content

Commit a73db5a

Browse files
committed
chore(ci): update Test workflow to use latest actions and improve formatting
1 parent 3b1708b commit a73db5a

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

.github/workflows/test.yml

+9-8
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,17 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
go: [ '1.23', '1.24' ]
10+
go:
11+
- 1.23
12+
- 1.24
1113

1214
name: Go ${{ matrix.go }} testing
1315
steps:
14-
- uses: actions/checkout@v2
16+
- uses: actions/checkout@v4
1517

16-
- name: Set up Go
17-
uses: actions/setup-go@v2
18-
with:
19-
go-version: ${{ matrix.go }}
18+
- uses: actions/setup-go@v5
19+
with:
20+
go-version: ${{ matrix.go }}
2021

21-
- name: Test
22-
run: go test
22+
- name: Test
23+
run: go test

0 commit comments

Comments
 (0)