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 b2763f2 commit 0ee163aCopy full SHA for 0ee163a
.github/workflows/build.yml
@@ -93,16 +93,15 @@ jobs:
93
coverage:
94
name: Coverage
95
runs-on: ubuntu-latest
96
- container:
97
- image: xd009642/tarpaulin:latest
98
- options: --security-opt seccomp=unconfined
99
steps:
100
-
101
- uses: actions/checkout@v4
102
- uses: dtolnay/rust-toolchain@stable
103
104
- - name: Run cargo-tarpaulin
105
- run: cargo tarpaulin --out Lcov -- --test-threads 1
+ - 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
106
107
- name: upload to Coveralls
108
uses: coverallsapp/github-action@master
0 commit comments