Skip to content

Commit ab2b7a2

Browse files
committed
Updated CI/CD
1 parent bca2e2c commit ab2b7a2

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

.github/workflows/rust.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,14 @@ jobs:
3131
cargo test --features tick_event
3232
cargo test --features timer_registration
3333
cargo test --features tick_event,timer_registration
34-
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+
3542
- name: Build
3643
run: |
3744
cargo build
@@ -43,7 +50,7 @@ jobs:
4350
- name: Generate Coverage Report
4451
if: ${{ matrix.os == 'ubuntu-latest' }}
4552
run: |
46-
cargo tarpaulin --engine llvm --out xml --output-dir target
53+
cargo tarpaulin --engine llvm --out xml --output-dir target --all-features
4754
4855
- name: Upload coverage reports to Codecov
4956
if: ${{ matrix.os == 'ubuntu-latest' }}

0 commit comments

Comments
 (0)