Skip to content

Commit 85c984b

Browse files
authored
slh-dsa: ensure no_std compatibility in CI (#876)
1 parent 8f93676 commit 85c984b

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/slh-dsa.yml

+18
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,24 @@ env:
1717
RUSTFLAGS: "-Dwarnings"
1818

1919
jobs:
20+
no_std:
21+
runs-on: ubuntu-latest
22+
strategy:
23+
matrix:
24+
target:
25+
- thumbv7em-none-eabi
26+
- wasm32-unknown-unknown
27+
rust:
28+
- 1.81.0 # MSRV
29+
- stable
30+
steps:
31+
- uses: actions/checkout@v4
32+
- uses: dtolnay/rust-toolchain@master
33+
with:
34+
toolchain: ${{ matrix.rust }}
35+
targets: ${{ matrix.target }}
36+
- run: cargo build --target ${{ matrix.target }} --no-default-features
37+
2038
test:
2139
runs-on: ubuntu-latest
2240
strategy:

0 commit comments

Comments
 (0)