Allow ensure_no_std to run without alloc #15
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| on: [push, pull_request] | |
| name: CI | |
| jobs: | |
| build-test-run: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| toolchain: | |
| - stable | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: dtolnay/rust-toolchain@master | |
| with: | |
| toolchain: ${{ matrix.toolchain }} | |
| # build | |
| - run: cargo build --all | |
| # test | |
| - run: cargo test --all | |
| - run: cargo test --all-features | |
| - run: cargo test --no-default-features | |
| - run: cargo test --no-default-features --features=alloc | |
| - run: cargo test --no-default-features --features=bits | |
| - run: cargo test --no-default-features --features=logging | |
| # run examples | |
| - run: cargo run --example 2>&1 | grep -P ' ' | awk '{print $1}' | xargs -i cargo run --example {} | |
| # Only build on MSRV, since trybuild will fail on older version | |
| build-msrv: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| toolchain: | |
| # msrv | |
| - 1.81 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: dtolnay/rust-toolchain@master | |
| with: | |
| toolchain: ${{ matrix.toolchain }} | |
| # build | |
| - run: cargo build --all | |
| fmt-clippy-check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: dtolnay/rust-toolchain@master | |
| with: | |
| toolchain: stable | |
| - run: cargo clippy --all-targets -- -D warnings | |
| - run: cargo fmt --all -- --check | |
| ensure_no_std: | |
| name: Ensure no_std | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: dtolnay/rust-toolchain@master | |
| with: | |
| toolchain: nightly | |
| targets: thumbv7em-none-eabihf | |
| - run: cd ensure_no_std && cargo build --release --target thumbv7em-none-eabihf | |
| - run: cd ensure_no_std && cargo build --release --target thumbv7em-none-eabihf --no-default-features | |
| ensure_wasm: | |
| name: Ensure wasm | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: dtolnay/rust-toolchain@master | |
| with: | |
| toolchain: nightly | |
| - uses: jetli/[email protected] | |
| with: | |
| version: 'latest' | |
| - run: cd ensure_wasm && wasm-pack build --target web && wasm-pack test --node |