Skip to content

Commit 4d8eab9

Browse files
Update test workflow
1 parent 40036d1 commit 4d8eab9

File tree

1 file changed

+8
-9
lines changed

1 file changed

+8
-9
lines changed

.github/workflows/test.yml

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
1+
on:
2+
push:
3+
14
name: Tests
25
permissions:
36
contents: read
47
pull-requests: read
5-
6-
on:
7-
push:
8-
98
jobs:
109
golangci:
1110
name: Linter
@@ -16,12 +15,12 @@ jobs:
1615
- name: Set up Go
1716
uses: actions/setup-go@v5
1817
with:
19-
go-version: '1.24'
18+
go-version: '1.25'
2019
cache: false
2120
- name: golangci-lint
22-
uses: golangci/golangci-lint-action@v6
21+
uses: golangci/golangci-lint-action@v8
2322
with:
24-
version: v1.64.6
23+
version: v2.8.0
2524
args: --timeout=5m
2625
test:
2726
name: Test
@@ -33,11 +32,11 @@ jobs:
3332
- name: Install Go
3433
uses: actions/setup-go@v5
3534
with:
36-
go-version: 1.24.x
35+
go-version: 1.25.x
3736

3837
- name: Golang tests
3938
env:
4039
GO111MODULE: on
4140
run: |
4241
go mod download
43-
go test -p 8 ./...
42+
go test -p 8 ./...

0 commit comments

Comments
 (0)