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 bb72644 commit 3e6b6d6Copy full SHA for 3e6b6d6
.github/workflows/ci.yml
@@ -0,0 +1,29 @@
1
+name: ci
2
+
3
+on:
4
+ push:
5
+ branches: [main]
6
+ pull_request:
7
8
+jobs:
9
+ build:
10
+ runs-on: ubuntu-latest
11
12
+ steps:
13
+ - uses: actions/checkout@v4
14
+ - uses: dtolnay/rust-toolchain@stable
15
+ - run: cargo install cargo-binutils
16
17
+ - run: cargo build
18
+ - run: cargo size
19
20
+ - run: cargo build --example rtt
21
+ - run: cargo size --example rtt
22
23
+ - run: cargo build --example embassy
24
+ - run: cargo size --example embassy
25
26
+ - name: Annotate commit with clippy warnings
27
+ uses: actions-rs/clippy-check@v1
28
+ with:
29
+ token: ${{ secrets.GITHUB_TOKEN }}
0 commit comments