We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0ec3ed0 + 32f4d02 commit 0c714bbCopy full SHA for 0c714bb
.github/workflows/ci.yml
@@ -22,3 +22,32 @@ jobs:
22
- run: cargo check
23
- run: cargo test
24
- run: cd extras/data-tests && cargo run --release
25
+
26
+ cross:
27
+ name: Rust ${{matrix.target}}
28
+ runs-on: ubuntu-latest
29
+ strategy:
30
+ fail-fast: false
31
+ matrix:
32
+ target:
33
+ - powerpc-unknown-linux-gnu
34
+ - powerpc64le-unknown-linux-gnu
35
+ - aarch64-unknown-linux-gnu
36
+ - armv7-unknown-linux-gnueabihf
37
+ steps:
38
+ - uses: actions/checkout@v2
39
+ - uses: actions-rs/toolchain@v1
40
+ with:
41
+ toolchain: stable
42
+ target: ${{matrix.target}}
43
+ override: true
44
+ - uses: actions-rs/cargo@v1
45
46
+ use-cross: true
47
+ command: check
48
+ args: --target ${{matrix.target}}
49
50
51
52
+ command: test
53
0 commit comments