We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c5a260b commit d661a78Copy full SHA for d661a78
2 files changed
.github/workflows/build.yml
@@ -0,0 +1,16 @@
1
+name: Build
2
+
3
+on: [push, pull_request]
4
5
+jobs:
6
+ build:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ - name: Checkout
10
+ uses: actions/checkout@v1
11
+ with:
12
+ submodules: true
13
+ - name: Add Target
14
+ run: rustup target add thumbv6m-none-eabi
15
+ - name: Build
16
+ run: cargo build --verbose --target=thumbv6m-none-eabi
.github/workflows/format.yml
@@ -0,0 +1,13 @@
+name: Format
+ check:
+ - uses: actions/checkout@v1
+ - name: Add Tool
+ run: rustup component add rustfmt
+ - name: Check Format
+ run: cargo fmt -- --check
0 commit comments