Skip to content

Commit d5418c9

Browse files
committed
Update testing pipeline
1 parent 666f0dc commit d5418c9

File tree

1 file changed

+10
-7
lines changed

1 file changed

+10
-7
lines changed

.github/workflows/ci.yml

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,19 @@ jobs:
1313
name: Tests
1414
runs-on: ubuntu-latest
1515
steps:
16-
- name: Set up Go 1.18
17-
uses: actions/setup-go@v3
18-
with:
19-
go-version: 1.18
2016
- name: Check out code
21-
uses: actions/checkout@v3
17+
uses: actions/checkout@v4
18+
19+
- name: Set up Go 1.22
20+
uses: actions/setup-go@v5
21+
with:
22+
go-version: 1.22
23+
2224
- name: golangci-lint
23-
uses: golangci/golangci-lint-action@v3
25+
uses: golangci/golangci-lint-action@v6
2426
with:
2527
version: latest
26-
args: --enable gofmt
28+
args: --enable gofmt --timeout=3m
29+
2730
- name: Run Tests
2831
run: go test `go list ./...`

0 commit comments

Comments
 (0)