There was an error while loading. Please reload this page.
1 parent d4ec557 commit 21c197aCopy full SHA for 21c197a
3 files changed
.github/workflows/ci.yml
@@ -46,9 +46,20 @@ jobs:
46
- name: Run Clippy
47
run: cargo clippy --all-targets --all-features -- -D warnings
48
49
- - name: Run offline tests
+ - name: Run offline tests on MSRV
50
+ if: matrix.rust == '1.88.0'
51
run: cargo test --all-targets --locked
52
53
+ - name: Install coverage tooling
54
+ if: matrix.rust == 'stable'
55
+ run: |
56
+ rustup component add llvm-tools-preview
57
+ cargo install cargo-llvm-cov --version 0.9.0 --locked
58
+
59
+ - name: Run offline tests with coverage
60
61
+ run: cargo llvm-cov --all-targets --all-features --locked --fail-under-lines 93
62
63
- name: Build release binary
64
run: cargo build --release --locked
65
0 commit comments