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 9b1cefaCopy full SHA for 9b1cefa
.github/workflows/ci.yml
@@ -0,0 +1,28 @@
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: actions-rs/toolchain@v1
15
16
+ - run: cargo build
17
+ - run: cargo size
18
19
+ - run: cargo build --example rtt
20
+ - run: cargo size --example rtt
21
22
+ - run: cargo build --example embassy
23
+ - run: cargo size --example embassy
24
25
+ - name: Annotate commit with clippy warnings
26
+ uses: actions-rs/clippy-check@v1
27
+ with:
28
+ token: ${{ secrets.GITHUB_TOKEN }}
0 commit comments