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.
stable
1 parent 047e300 commit a8efed5Copy full SHA for a8efed5
.github/workflows/ci.yml
@@ -195,8 +195,17 @@ jobs:
195
cargo fmt -- --check
196
cargo clippy --all-targets --all-features --all
197
198
- - run: cargo install cargo-tarpaulin
199
- - run: cargo tarpaulin
+ - name: Install cargo-tarpaulin
+ if: matrix.rust == 'stable'
200
+ run: which cargo-tarpaulin || cargo install cargo-tarpaulin
201
+
202
+ - name: Run tests (with coverage report)
203
204
+ run: cargo tarpaulin
205
206
+ - name: Run tests
207
+ if: matrix.rust != 'stable'
208
+ run: cargo test
209
210
- name: Prune unnecessary cache
211
run: script/ci/prune-cache.sh
0 commit comments