We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 97b8944 commit edcdf26Copy full SHA for edcdf26
1 file changed
.github/workflows/actions.yml
@@ -21,6 +21,20 @@ jobs:
21
RUSTFLAGS: -D warnings
22
- name: Run tests
23
run: cargo test --all --verbose --features serialize,arbitrary
24
+ no-std:
25
+ name: no-std build and test
26
+ strategy:
27
+ matrix:
28
+ os: ['ubuntu-latest', 'macos-latest']
29
+ runs-on: ${{ matrix.os }}
30
+ steps:
31
+ - uses: actions/checkout@v2
32
+ - name: Build
33
+ run: cargo build --verbose --no-default-features
34
+ env:
35
+ RUSTFLAGS: -D warnings
36
+ - name: Run tests
37
+ run: cargo test --all --verbose --no-default-features
38
39
rustfmt_and_clippy:
40
name: Check rustfmt style && run clippy
0 commit comments