name: CI
on: [push]
jobs:
test_nightly:
name: test on nightly
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.3.0
- uses: actions-rs/toolchain@v1.0.7
with:
toolchain: nightly
override: true
- uses: actions-rs/cargo@v1.0.3
with:
command: test
args: --all-features
build_no_std:
name: build with no_std
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.3.0
- uses: actions-rs/toolchain@v1.0.7
with:
toolchain: stable
override: true
target: thumbv6m-none-eabi
- uses: actions-rs/cargo@v1.0.3
with:
command: build
args: --no-default-features --target thumbv6m-none-eabi