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 07d2977 commit 4a3fc8fCopy full SHA for 4a3fc8f
.github/workflows/ci.yaml
@@ -42,6 +42,27 @@ jobs:
42
components: rustfmt
43
- run: cargo fmt --all --check
44
45
+ nostd-build:
46
+ runs-on: ubuntu-latest
47
+ continue-on-error: ${{ matrix.experimental }}
48
+ strategy:
49
+ matrix:
50
+ include:
51
+ - rust: stable
52
+ experimental: false
53
+ target: thumbv6m-none-eabi
54
+
55
+ name: nostd-build/${{ matrix.target }}/${{ matrix.rust }}
56
+ steps:
57
+ - uses: actions/checkout@v4
58
+ - uses: dtolnay/rust-toolchain@stable
59
+ with:
60
+ toolchain: ${{ matrix.rust }}
61
+ targets: ${{ matrix.target }}
62
+ - name: Tests
63
+ run: |
64
+ cargo rustc "--target=${{ matrix.target }}" --no-default-features --features critical-section
65
66
tests:
67
runs-on: ubuntu-latest
68
strategy:
0 commit comments