We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 749729b commit a418120Copy full SHA for a418120
1 file changed
.github/workflows/ci.yml
@@ -40,14 +40,21 @@ jobs:
40
if: matrix.rust == 'stable'
41
run: cargo clippy --all-targets -- -D warnings
42
43
+ - name: Run clippy (no_std)
44
+ if: matrix.rust == 'stable'
45
+ run: cargo clippy --all-targets --no-default-features -- -D warnings
46
+
47
- name: Build
48
run: cargo build --verbose
49
50
- name: Run tests
51
run: cargo test --verbose
52
53
- name: Run tests (no_std)
- run: cargo test --no-default-features --features no_std --verbose
54
+ run: cargo test --no-default-features --verbose
55
56
+ - name: Check no_std compilation
57
+ run: cargo check --no-default-features --verbose
58
59
- name: Run tests (nightly features)
60
if: matrix.rust == 'nightly'
0 commit comments