Skip to content

Commit 6fcb81f

Browse files
waywardmonkeysmbrubeck
authored andcommitted
ci: Add CI for no_std.
1 parent 2128411 commit 6fcb81f

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/main.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,11 +83,25 @@ jobs:
8383
working-directory: fuzz
8484
run: ./travis-fuzz.sh
8585

86+
no-std:
87+
name: no_std
88+
runs-on: ubuntu-latest
89+
steps:
90+
- uses: actions/checkout@v4
91+
- name: Install toolchain
92+
uses: dtolnay/rust-toolchain@master
93+
with:
94+
toolchain: stable
95+
target: thumbv7m-none-eabi
96+
- name: Cargo build
97+
run: cargo build --verbose
98+
8699
build_result:
87100
name: Result
88101
runs-on: ubuntu-latest
89102
needs:
90103
- "ci"
104+
- "no-std"
91105

92106
steps:
93107
- name: Mark the job as successful

0 commit comments

Comments
 (0)