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 e22f0cc commit 3aa2a12Copy full SHA for 3aa2a12
.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
@@ -37,9 +41,9 @@ jobs:
37
41
components: rustfmt, clippy
38
42
39
43
- run: cargo fmt --check
40
- - run: cargo clippy --target=${{ matrix.target }} -- -Dwarnings
- - run: cargo build --target=${{ matrix.target }}
- - run: cargo doc --target=${{ matrix.target }}
44
+ - run: cargo clippy --target=${{ matrix.target }} ${{ matrix.features }} -- -Dwarnings
45
+ - run: cargo build --target=${{ matrix.target }} ${{ matrix.features }}
46
+ - run: cargo doc --target=${{ matrix.target }} ${{ matrix.features }}
47
env:
48
RUSTDOCFLAGS: -Dwarnings
49
# Temporary test non-target only.
0 commit comments