gh-actions: Also run fmt and clippy #72
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build | |
on: | |
- push | |
- pull_request | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
rust: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [macos-latest, ubuntu-latest, windows-latest] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dorny/paths-filter@v2 | |
id: changes | |
with: | |
filters: | | |
rust: | |
- '**.rs' | |
- 'Cargo.lock' | |
- '.github/workflows/**' | |
- if: steps.changes.outputs.rust == 'true' | |
run: | | |
cargo build --target=thumbv6m-none-eabi --all-features | |
pushd examples/adafruit_rgb | |
cargo build --target=thumbv6m-none-eabi --examples | |
popd | |
cargo install flip-link | |
pushd examples/ledmatrix | |
cargo build --examples | |
popd | |
rustdoc: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: dorny/paths-filter@v2 | |
id: changes | |
with: | |
filters: | | |
rust: | |
- '**.rs' | |
- 'Cargo.lock' | |
- '.github/workflows/**' | |
- if: steps.changes.outputs.rust == 'true' | |
run: | | |
cargo doc | |
cargo fmt --all -- --check | |
cargo clippy -p c1minimal -- --deny=warnings |