# This builds for thumbv6m-none-eabi to ensure we build with no-std.
on:
name: no-std
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
target: thumbv6m-none-eabi
override: true
- uses: actions-rs/cargo@v1
with:
use-cross: true
command: build
args: --release --target=thumbv6m-none-eabi