We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb5f79d commit 6d17dfeCopy full SHA for 6d17dfe
.github/workflows/rust.yml
@@ -11,7 +11,6 @@ env:
11
12
jobs:
13
build:
14
-
15
runs-on: ubuntu-latest
16
strategy:
17
matrix:
@@ -26,6 +25,21 @@ jobs:
26
25
- name: Run tests
27
run: cargo test --verbose
28
+ build_no_std:
29
+ runs-on: ubuntu-latest
30
+ strategy:
31
+ matrix:
32
+ rust:
33
+ - stable
34
+ - nightly
35
+ - 1.52.1 # MSVR
36
+ steps:
37
+ - uses: actions/checkout@v2
38
+ - name: "Rustup: install some no_std target"
39
+ run: rustup target add thumbv7em-none-eabihf
40
+ - name: Build (no_std)
41
+ run: cargo build --target thumbv7em-none-eabihf
42
+
43
44
# As discussed, these tasks are optional for PRs.
45
style_checks:
0 commit comments