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 af4b4ef commit 3e5e31aCopy full SHA for 3e5e31a
.github/workflows/ci.yml
@@ -31,11 +31,14 @@ jobs:
31
run: go vet ./...
32
33
- name: Install staticcheck
34
- run: go install honnef.co/go/tools/cmd/staticcheck@2023.1.6
+ run: go install honnef.co/go/tools/cmd/staticcheck@latest
35
36
- name: Static Check
37
run: staticcheck ./...
38
39
+ - name: Run coverage
40
+ run: go test -race -coverprofile=coverage.txt -covermode=atomic ./...
41
+
42
- name: Upload coverage reports to Codecov
43
uses: codecov/codecov-action@v5
44
with:
.github/workflows/coverage.yml
0 commit comments