Skip to content

Commit 879c897

Browse files
committed
ci: enable derive feature on stable
1 parent c4a9e2d commit 879c897

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@ jobs:
1212
steps:
1313
- uses: actions/checkout@v4
1414
- uses: dtolnay/rust-toolchain@stable
15-
- run: cargo check --workspace
15+
- run: cargo check --workspace --features derive
1616

1717
test:
1818
name: Test Suite
1919
runs-on: ubuntu-latest
2020
steps:
2121
- uses: actions/checkout@v4
2222
- uses: dtolnay/rust-toolchain@stable
23-
- run: cargo test --workspace
23+
- run: cargo test --workspace --features derive
2424

2525
unstable:
2626
name: Test Suite (unstable)
@@ -47,4 +47,4 @@ jobs:
4747
with:
4848
components: clippy, rustfmt
4949
- run: cargo fmt --all --check
50-
- run: cargo clippy --workspace
50+
- run: cargo clippy --workspace --features derive

0 commit comments

Comments
 (0)