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 a90da9c commit a524846Copy full SHA for a524846
3 files changed
.github/workflows/ci.yml
@@ -34,6 +34,14 @@ jobs:
34
working-directory: libpilot
35
run: go test -race -coverprofile=coverage.out -covermode=atomic ./...
36
37
+ - name: Upload coverage to Codecov
38
+ uses: codecov/codecov-action@v4
39
+ with:
40
+ files: ./libpilot/coverage.out
41
+ flags: unittests
42
+ name: libpilot
43
+ fail_ci_if_error: false
44
+
45
- name: Coverage summary
46
47
run: go tool cover -func=coverage.out | tail -20
0 commit comments