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 b2b04e1 commit dd2a4faCopy full SHA for dd2a4fa
.github/workflows/test-suite.yml
@@ -31,3 +31,18 @@ jobs:
31
run: rustup update stable
32
- name: Run tests
33
run: cargo test --release
34
+ coverage:
35
+ runs-on: ubuntu-latest
36
+ name: cargo-tarpaulin
37
+ steps:
38
+ - uses: actions/checkout@v3
39
+ - name: Get latest version of stable Rust
40
+ run: rustup update stable
41
+ - name: Install cargo-tarpaulin
42
+ uses: taiki-e/install-action@cargo-tarpaulin
43
+ - name: Check code coverage with cargo-tarpaulin
44
+ run: cargo-tarpaulin --workspace --all-features --out xml
45
+ - name: Upload to codecov.io
46
+ uses: codecov/codecov-action@v3
47
+ with:
48
+ fail_ci_if_error: true
0 commit comments