We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2128411 commit 6fcb81fCopy full SHA for 6fcb81f
.github/workflows/main.yml
@@ -83,11 +83,25 @@ jobs:
83
working-directory: fuzz
84
run: ./travis-fuzz.sh
85
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
+
99
build_result:
100
name: Result
101
runs-on: ubuntu-latest
102
needs:
103
- "ci"
104
+ - "no-std"
105
106
steps:
107
- name: Mark the job as successful
0 commit comments