Skip to content

Commit 3f62e67

Browse files
committed
Updated CI/CD with test and build feature combinations
1 parent 641869d commit 3f62e67

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/rust.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,17 @@ jobs:
2828
run: |
2929
cargo clippy
3030
cargo test
31+
cargo test --features tick_event
32+
cargo test --features timer_registration
33+
cargo test --features tick_event,timer_registration
3134
3235
- name: Build
3336
run: |
3437
cargo build
3538
cargo build --release
39+
cargo build --features tick_event
40+
cargo build --features timer_registration
41+
cargo build --features tick_event,timer_registration
3642
3743
- name: Generate Coverage Report
3844
if: ${{ matrix.os == 'ubuntu-latest' }}

0 commit comments

Comments
 (0)