We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5754bb7 commit 0b3a0b3Copy full SHA for 0b3a0b3
.github/workflows/clippy.yml
@@ -0,0 +1,18 @@
1
+on: [push, pull_request]
2
+
3
+name: Clippy check
4
+jobs:
5
+ clippy_check:
6
+ runs-on: ubuntu-latest
7
+ steps:
8
+ - uses: actions/checkout@v1
9
+ - run: rustup component add clippy
10
+ - uses: actions-rs/toolchain@v1
11
+ with:
12
+ toolchain: stable
13
+ target: thumbv7m-none-eabi
14
+ override: true
15
+ - uses: actions-rs/clippy-check@v1
16
17
+ token: ${{ secrets.GITHUB_TOKEN }}
18
+ args: --features=stm32f103 --target thumbv7m-none-eabi
0 commit comments