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 c1afd6a commit c101737Copy full SHA for c101737
.github/workflows/rust.yml
@@ -18,10 +18,18 @@ jobs:
18
runs-on: ubuntu-latest
19
steps:
20
- uses: actions/checkout@v4
21
- - name: Build
+ - name: Build (default features)
22
run: cargo build
23
- - name: Run Tests
+ - name: Build (no features)
24
+ run: cargo build --no-default-features
25
+ - name: Build (all features)
26
+ run: cargo build --all-features
27
+ - name: Run Tests (default features)
28
run: cargo test
29
+ - name: Run Tests (no features)
30
+ run: cargo test --no-default-features
31
+ - name: Run Tests (all features)
32
+ run: cargo test --all-features
33
34
clippy:
35
0 commit comments