We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6303ef9 commit ce5330cCopy full SHA for ce5330c
.github/workflows/go.yml
@@ -13,21 +13,21 @@ jobs:
13
build:
14
runs-on: ubuntu-latest
15
steps:
16
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
17
18
- name: Set up Go
19
- uses: actions/setup-go@v4
+ uses: actions/setup-go@v5
20
with:
21
go-version-file: 'go.mod'
22
-
+
23
- name: Format
24
run: |
25
go install mvdan.cc/gofumpt@latest
26
gofumpt -l -w .
27
git diff --exit-code
28
29
- name: golangci-lint
30
- uses: golangci/golangci-lint-action@v3
+ uses: golangci/golangci-lint-action@v6
31
32
- name: Test
33
run: go test -v ./...
0 commit comments