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 b8e8e27 commit af4b411Copy full SHA for af4b411
.github/workflows/format.yml
@@ -0,0 +1,15 @@
1
+name: Format
2
+
3
+on: [push, pull_request]
4
5
+jobs:
6
+ check:
7
8
+ runs-on: ubuntu-latest
9
10
+ steps:
11
+ - uses: actions/checkout@v1
12
+ - name: Add Tool
13
+ run: rustup component add rustfmt
14
+ - name: Check Format
15
+ run: cargo fmt -- --check
.github/workflows/rust.yml
@@ -0,0 +1,18 @@
+name: Build
+ build:
+ - name: Checkout
+ uses: actions/checkout@v1
+ with:
+ submodules: true
+ - name: Add Target
16
+ run: rustup target add thumbv7em-none-eabi
17
+ - name: Build
18
+ run: cargo build --verbose --target=thumbv7em-none-eabi
0 commit comments