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 edeeab9 commit 5a043d7Copy full SHA for 5a043d7
1 file changed
.github/workflows/ci.yml
@@ -38,11 +38,13 @@ jobs:
38
- name: Format
39
run: cargo fmt --all -- --check
40
41
- - name: Clippy (default features)
42
- run: cargo clippy --all-targets -- -D warnings
+ # Note: We skip 'visualize' feature in CI as minifb requires platform-specific
+ # libraries (webgpu_dawn) that aren't available in GitHub Actions runners
43
+ - name: Clippy (annotate feature)
44
+ run: cargo clippy --all-targets --no-default-features --features annotate -- -D warnings
45
- - name: Tests (default features)
- run: cargo test --all
46
+ - name: Tests (annotate feature)
47
+ run: cargo test --no-default-features --features annotate
48
49
# Video feature tests (requires ffmpeg)
50
test-video:
0 commit comments