update PACs #2557
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
on: | |
push: | |
branches: [staging, trying, master] | |
pull_request: | |
name: Clippy check | |
jobs: | |
clippy_check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use the latest stable rustc | |
run: rustup update stable && rustup default stable | |
- name: Add Cortex-M4F target | |
run: rustup target add thumbv7em-none-eabihf | |
- name: Cache Dependencies | |
uses: Swatinem/rust-cache@v2 | |
with: | |
key: v0.22.0 | |
- run: cargo clippy --examples --features=stm32f479,usb_fs,sdio-host,can,i2s,fsmc_lcd,rtic1 | |