We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e75e81d commit 567633fCopy full SHA for 567633f
.github/workflows/test-and-lint.yaml
@@ -17,14 +17,16 @@ jobs:
17
- name: Test
18
run: go test -v ./... -coverprofile="coverage.out"
19
20
- - uses: codecov/codecov-action@v2
+ - uses: codecov/codecov-action@v5
21
with:
22
+ token: ${{ secrets.CODECOV_TOKEN }}
23
files: coverage.out
24
flags: unittests # optional
25
name: go-cache
26
fail_ci_if_error: true # optional (default = false)
27
verbose: false # optional (default = false)
28
29
+
30
lint:
31
name: lint
32
runs-on: ubuntu-latest
0 commit comments