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 aa5520c commit 9eb8f95Copy full SHA for 9eb8f95
.github/workflows/unit_test.yml
@@ -5,6 +5,7 @@ on:
5
branches:
6
- master
7
- feature/unit_test
8
+ - fix/cc_action
9
paths-ignore:
10
- 'README.md'
11
- 'README_zh.md'
@@ -35,9 +36,10 @@ jobs:
35
36
uses: codecov/codecov-action@v4
37
with:
38
token: ${{ secrets.CODECOV_TOKEN }}
- - name: Upload results to Code Climate
39
- uses: paambaati/[email protected]
40
- env:
41
- CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
+ - name: Export coverage data as LCOV
+ run: coverage lcov -o coverage.lcov
+ - name: Upload coverage data to Qlty Cloud
42
+ uses: qltysh/qlty-action/coverage@v1
43
- coverageCommand: coverage xml
44
+ token: ${{ secrets.QLTY_COVERAGE_TOKEN }}
45
+ files: "coverage.lcov"
0 commit comments