We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 666f0dc commit d5418c9Copy full SHA for d5418c9
.github/workflows/ci.yml
@@ -13,16 +13,19 @@ jobs:
13
name: Tests
14
runs-on: ubuntu-latest
15
steps:
16
- - name: Set up Go 1.18
17
- uses: actions/setup-go@v3
18
- with:
19
- go-version: 1.18
20
- name: Check out code
21
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
+
+ - name: Set up Go 1.22
+ uses: actions/setup-go@v5
+ with:
22
+ go-version: 1.22
23
24
- name: golangci-lint
- uses: golangci/golangci-lint-action@v3
25
+ uses: golangci/golangci-lint-action@v6
26
with:
27
version: latest
- args: --enable gofmt
28
+ args: --enable gofmt --timeout=3m
29
30
- name: Run Tests
31
run: go test `go list ./...`
0 commit comments