Skip to content

Commit 29f79c9

Browse files
runningcodeclaude
andcommitted
ci(lint): Add managed feature check to CI
The managed feature flag was only tested during Docker image builds, which run late in the release pipeline. Add `cargo check --features managed` to the Linux lint job so breakage is caught on every PR. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent fb3dc15 commit 29f79c9

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/lint.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,3 +89,7 @@ jobs:
8989

9090
- name: Run Clippy
9191
run: cargo clippy --workspace --tests --target ${{ matrix.target }}
92+
93+
- name: Check managed feature compiles
94+
if: matrix.target == 'x86_64-unknown-linux-musl'
95+
run: cargo check --features managed --target ${{ matrix.target }}

0 commit comments

Comments
 (0)