Skip to content

Commit

Permalink
slh-dsa: ensure no_std compatibility in CI (#876)
Browse files Browse the repository at this point in the history
  • Loading branch information
tarcieri authored Nov 12, 2024
1 parent 8f93676 commit 85c984b
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/slh-dsa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,24 @@ env:
RUSTFLAGS: "-Dwarnings"

jobs:
no_std:
runs-on: ubuntu-latest
strategy:
matrix:
target:
- thumbv7em-none-eabi
- wasm32-unknown-unknown
rust:
- 1.81.0 # MSRV
- stable
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.rust }}
targets: ${{ matrix.target }}
- run: cargo build --target ${{ matrix.target }} --no-default-features

test:
runs-on: ubuntu-latest
strategy:
Expand Down

0 comments on commit 85c984b

Please sign in to comment.