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 12a1c9a commit 0467a99Copy full SHA for 0467a99
1 file changed
.github/workflows/ci.yml
@@ -33,14 +33,19 @@ jobs:
33
cache: true
34
35
- name: Verify root tests
36
- run: go test ./...
+ run: go test ./... -coverprofile=coverage.txt
37
38
- name: Verify race detector
39
run: go test -race ./...
40
41
- name: Verify go vet
42
run: go vet ./...
43
44
+ - name: Upload coverage reports to Codecov
45
+ uses: codecov/codecov-action@v5
46
+ with:
47
+ token: ${{ secrets.CODECOV_TOKEN }}
48
+
49
validation-playground:
50
name: Validation submodule
51
runs-on: ubuntu-latest
0 commit comments