Skip to content

Test program for RP2040. #10

Test program for RP2040.

Test program for RP2040. #10

Workflow file for this run

name: CI Checks
on: [push, pull_request]
env:
CARGO_TERM_COLOR: always
jobs:
building:
name: Building
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
target: thumbv6m-none-eabi
- run: cd firmware && cargo install flip-link
- run: cd firmware && cargo build --all
- run: cd firmware && cargo build --all --release
linting:
name: Linting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: true
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy
target: thumbv6m-none-eabi
- run: cd firmware && cargo clippy --all-features -- --deny=warnings
formatting:
name: Formatting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: true
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt
target: thumbv6m-none-eabi
- run: cd firmware && cargo fmt -- --check