We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7ad5452 commit 2766ea7Copy full SHA for 2766ea7
.github/workflows/ci.yml
@@ -35,7 +35,12 @@ jobs:
35
- name: Install Cargo-to-JUnit
36
run: cargo install cargo2junit
37
38
- - name: Cargo Build and Test
+ - name: Cargo Build
39
+ run: |
40
+ cargo build --features alias,fmt,lazy
41
+ cargo build --features async
42
+
43
+ - name: Cargo Test
44
run: |
45
cargo test --features alias,fmt,lazy -- -Z unstable-options --format json --report-time | cargo2junit > target/debug/results.xml
46
cargo test --features async -- -Z unstable-options --format json --report-time | cargo2junit > target/debug/results-async.xml
0 commit comments