We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
no_std
1 parent 57075d6 commit 3b795c8Copy full SHA for 3b795c8
.github/workflows/rust.yml
@@ -25,6 +25,20 @@ jobs:
25
run: cargo test --verbose --all-features --all
26
- name: Build Examples
27
run: cargo build --examples --all-features --all
28
+ no_std_build:
29
+ name: no_std Build
30
+ runs-on: ubuntu-latest
31
+ steps:
32
+ - uses: actions/checkout@v3
33
+ - run: rustup update
34
+ - name: Build
35
+ run: cargo build --verbose --no-default-features
36
37
+ run: cargo build --verbose --no-default-features --features=alloc
38
+ - name: Run tests
39
+ run: cargo test --verbose --no-default-features
40
+ - name: Run tests as no_std with alloc
41
+ run: cargo test --verbose --no-default-features --features=alloc
42
clippy:
43
name: Clippy
44
runs-on: ubuntu-latest
0 commit comments