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 0ad4eea commit dce5ce8Copy full SHA for dce5ce8
.github/workflows/ci.yaml
@@ -21,10 +21,14 @@ jobs:
21
run: make bin bin/simple bin/minimal
22
working-directory: tests/go-tests
23
- name: Run tests
24
- run: go test -v ./...
25
- working-directory: rvgo
+ run: go test -v ./rvgo/... -coverprofile=coverage.out -coverpkg=./rvgo/...
26
- name: Fuzz
27
run: make fuzz
+ - name: Upload coverage to Codecov
28
+ uses: codecov/codecov-action@v4
29
+ with:
30
+ token: ${{ secrets.CODECOV_TOKEN }}
31
+ verbose: true
32
rvsol-tests:
33
runs-on: ubuntu-latest
34
timeout-minutes: 20
0 commit comments