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.
cargo run
1 parent ddfdfba commit 3341e91Copy full SHA for 3341e91
.github/workflows/ci.yml
@@ -63,8 +63,11 @@ jobs:
63
with:
64
toolchain: ${{ matrix.rust }}
65
components: rustfmt
66
- - run: cargo +${{ matrix.rust }} test --examples
67
- - run: cargo +${{ matrix.rust }} test --features=std --examples
+ - run: |
+ for eg in `ls examples/*.rs | xargs basename --suffix=.rs`; do
68
+ cargo +${{ matrix.rust }} run --example ${eg};
69
+ cargo +${{ matrix.rust }} run --features=std --example ${eg};
70
+ done
71
72
no_std:
73
name: Build for a no_std target
0 commit comments