mirror of
https://github.com/italicsjenga/rp-hal-boards.git
synced 2024-12-24 13:11:30 +11:00
53d9dbdf52
* 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>
37 lines
997 B
YAML
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
|