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 bca2e2c commit ab2b7a2Copy full SHA for ab2b7a2
.github/workflows/rust.yml
@@ -31,7 +31,14 @@ jobs:
31
cargo test --features tick_event
32
cargo test --features timer_registration
33
cargo test --features tick_event,timer_registration
34
-
+
35
+ - name: Bench
36
+ run: |
37
+ cargo bench
38
+ cargo bench --features tick_event
39
+ cargo bench --features timer_registration
40
+ cargo bench --features tick_event,timer_registration
41
42
- name: Build
43
run: |
44
cargo build
@@ -43,7 +50,7 @@ jobs:
50
- name: Generate Coverage Report
51
if: ${{ matrix.os == 'ubuntu-latest' }}
45
52
46
- cargo tarpaulin --engine llvm --out xml --output-dir target
53
+ cargo tarpaulin --engine llvm --out xml --output-dir target --all-features
47
54
48
55
- name: Upload coverage reports to Codecov
49
56
0 commit comments