2021-05-04 17:41:33 +10:00
|
|
|
on: [push, pull_request]
|
|
|
|
name: Clippy check
|
|
|
|
jobs:
|
|
|
|
clippy_check:
|
|
|
|
runs-on: ubuntu-20.04
|
2021-07-20 02:49:06 +10:00
|
|
|
env:
|
|
|
|
RUSTFLAGS: "-D warnings"
|
2021-05-04 17:41:33 +10:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2021-07-26 19:48:11 +10:00
|
|
|
- run: sudo apt-get update
|
|
|
|
- run: sudo apt-get install gcc-arm-none-eabi
|
2021-05-04 17:41:33 +10:00
|
|
|
- uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
|
|
|
toolchain: stable
|
|
|
|
target: thumbv6m-none-eabi
|
|
|
|
override: true
|
|
|
|
profile: minimal
|
|
|
|
components: clippy
|
|
|
|
- uses: actions-rs/cargo@v1
|
|
|
|
with:
|
|
|
|
command: clippy
|
2021-07-26 19:48:11 +10:00
|
|
|
args: --workspace --examples -- -Dwarnings
|