You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
532 B
21 lines
532 B
on: |
|
push: |
|
branches: [ staging, trying, master ] |
|
pull_request: |
|
|
|
name: Clippy check |
|
jobs: |
|
clippy_check: |
|
runs-on: ubuntu-latest |
|
steps: |
|
- uses: actions/checkout@v1 |
|
- run: rustup component add clippy |
|
- uses: actions-rs/toolchain@v1 |
|
with: |
|
toolchain: stable |
|
target: thumbv6m-none-eabi |
|
override: true |
|
- uses: actions-rs/clippy-check@v1 |
|
with: |
|
token: ${{ secrets.GITHUB_TOKEN }} |
|
args: --features=stm32f072 --target thumbv6m-none-eabi
|
|
|