We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b02dba commit 40d9584Copy full SHA for 40d9584
.github/workflows/ci.yml
@@ -26,6 +26,10 @@ jobs:
26
- armv7-linux-androideabi
27
- aarch64-linux-android
28
- i686-linux-android
29
+ features:
30
+ - ""
31
+ - --no-default-features
32
+ - --all-features
33
34
steps:
35
- uses: actions/checkout@v3
@@ -35,8 +39,8 @@ jobs:
39
toolchain: ${{ matrix.toolchain }}
36
40
target: ${{ matrix.target }}
37
41
38
- - run: cargo build --target=${{ matrix.target }}
- - run: cargo doc --target=${{ matrix.target }}
42
+ - run: cargo build --target=${{ matrix.target }} ${{ matrix.features }}
43
+ - run: cargo doc --target=${{ matrix.target }} ${{ matrix.features }}
44
# Temporary test non-target only.
45
# TODO: Test in emulator or something.
46
- run: cargo test
0 commit comments