We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c4a9e2d commit 879c897Copy full SHA for 879c897
.github/workflows/build.yml
@@ -12,15 +12,15 @@ jobs:
12
steps:
13
- uses: actions/checkout@v4
14
- uses: dtolnay/rust-toolchain@stable
15
- - run: cargo check --workspace
+ - run: cargo check --workspace --features derive
16
17
test:
18
name: Test Suite
19
runs-on: ubuntu-latest
20
21
22
23
- - run: cargo test --workspace
+ - run: cargo test --workspace --features derive
24
25
unstable:
26
name: Test Suite (unstable)
@@ -47,4 +47,4 @@ jobs:
47
with:
48
components: clippy, rustfmt
49
- run: cargo fmt --all --check
50
- - run: cargo clippy --workspace
+ - run: cargo clippy --workspace --features derive
0 commit comments