rp-hal-boards/.github/workflows/build_and_test.yml
Jonathan 'theJPster' Pallant 53d9dbdf52
Update to pio-rs v0.1.0 (#239)
* Update to PIO 0.1.0

* Update to latest ws2812-pio and i2c-pio.

These depend on pio 0.1.0, avoiding a conflict

* Rename CI tests.

Also check we can cargo build. And remove 'on host tests' that didn't
do anything.

Co-authored-by: Jonathan Pallant <jonathan.pallant@42technology.com>
2021-12-14 10:52:32 +11:00

37 lines
997 B
YAML

on: [push, pull_request]
name: Build and Test check
jobs:
check:
name: cargo-check
runs-on: ubuntu-20.04
env:
RUSTFLAGS: "-D warnings"
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
target: thumbv6m-none-eabi
override: true
profile: minimal
- uses: actions-rs/cargo@v1
with:
command: check
args: --workspace --examples
- uses: actions-rs/cargo@v1
with:
command: check
args: --workspace --examples --features eh1_0_alpha
- uses: actions-rs/cargo@v1
with:
command: build
args: --workspace --all
- uses: actions-rs/cargo@v1
with:
command: test
args: --doc --target x86_64-unknown-linux-gnu
- uses: actions-rs/cargo@v1
with:
command: test
args: --doc --target x86_64-unknown-linux-gnu --features chrono