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 45c6fae commit 631bf5fCopy full SHA for 631bf5f
.github/workflows/ci.yml
@@ -0,0 +1,28 @@
1
+on:
2
+ push:
3
+ branches:
4
+ - master
5
+ pull_request:
6
+
7
+name: CI
8
9
+jobs:
10
+ build:
11
+ name: Build
12
+ runs-on: ubuntu-latest
13
+ strategy:
14
+ matrix:
15
+ toolchain: [stable]
16
+ target: [armv7-unknown-linux-gnueabihf, arm-unknown-linux-gnueabihf, aarch64-unknown-linux-gnu]
17
+ steps:
18
+ - uses: actions/checkout@v2
19
+ - uses: actions-rs/toolchain@v1
20
+ with:
21
+ toolchain: ${{ matrix.toolchain }}
22
+ target: ${{ matrix.target }}
23
+ override: true
24
+ - uses: actions-rs/cargo@v1
25
26
+ use-cross: true
27
+ command: build
28
+ args: --target ${{ matrix.target }}
.travis.yml
0 commit comments