We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 53704b1 commit 89af718Copy full SHA for 89af718
1 file changed
.github/workflows/ci.yml
@@ -27,19 +27,14 @@ jobs:
27
steps:
28
- name: Checkout
29
uses: actions/checkout@v4
30
- - name: Install Tarpaulin
31
- run: cargo install cargo-tarpaulin
+ - name: Install cargo-llvm-cov
+ uses: taiki-e/install-action@cargo-llvm-cov
32
- name: Generate code coverage
33
- run: |
34
- cargo tarpaulin \
35
- --verbose \
36
- --all-features \
37
- --workspace \
38
- --timeout 120 \
39
- --out xml
+ run: cargo llvm-cov --all-features --workspace --lcov --output-path lcov.info
40
- name: Upload report
41
uses: codecov/codecov-action@v5
42
with:
43
fail_ci_if_error: true
44
token: ${{ secrets.CODECOV_TOKEN }}
45
verbose: true
+ files: lcov.info
0 commit comments