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 6ac7283 commit 35da9a4Copy full SHA for 35da9a4
.github/workflows/rust.yaml
@@ -6,6 +6,9 @@ jobs:
6
run:
7
name: Run
8
runs-on: ubuntu-latest
9
+ strategy:
10
+ matrix:
11
+ features: [--all-features, --no-default-features]
12
steps:
13
- name: Install Rust stable
14
uses: actions-rs/toolchain@v1
@@ -22,16 +25,16 @@ jobs:
22
25
uses: actions-rs/cargo@v1
23
26
with:
24
27
command: build
- args: --workspace
28
+ args: --workspace ${{ matrix.features }}
29
30
- name: Lint
31
32
33
command: clippy
- args: --workspace -- -D warnings
34
+ args: --workspace ${{ matrix.features }} -- -D warnings
35
36
- name: Test
37
38
39
command: test
40
0 commit comments