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 e134189 commit 4dbbc63Copy full SHA for 4dbbc63
.github/workflows/coverage.yml
@@ -9,10 +9,13 @@ on:
9
jobs:
10
coverage:
11
runs-on: ubuntu-latest
12
- container:
13
- image: xd009642/tarpaulin:latest
14
- options: --security-opt seccomp=unconfined
15
steps:
16
- uses: actions/checkout@v3
17
- - run: cargo tarpaulin -f -t 5 --out Xml -v -- --test-threads=1
18
- - uses: codecov/codecov-action@v3
+ - name: Install cargo-llvm-cov
+ uses: taiki-e/install-action@cargo-llvm-cov
+ - name: Generate code coverage
+ run: cargo llvm-cov --all-features --workspace --lcov --output-path lcov.info
+ - name: Upload coverage to Codecov
19
+ uses: codecov/codecov-action@v3
20
+ with:
21
+ files: lcov.info
0 commit comments