We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe920e6 commit aac178cCopy full SHA for aac178c
.github/workflows/ci.yaml
@@ -13,25 +13,16 @@ jobs:
13
runs-on: ubuntu-latest
14
steps:
15
- name: Set up Go
16
- uses: actions/setup-go@v2
+ uses: actions/setup-go@v4
17
with:
18
go-version: 1.20
19
+ cache: true
20
21
- name: Check out code
- uses: actions/checkout@v2
22
-
23
- - name: Install dependencies
24
- run: |
25
- go install golang.org/x/tools/cmd/goimports@latest
26
- go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest
27
28
- - name: Format and vet code
29
30
- make fmt
31
- make vet
+ uses: actions/checkout@v3
32
33
- name: Run tests
34
- run: go test ./...
+ run: go test -v ./...
35
36
- name: Build project
37
run: make build
0 commit comments