Skip to content

Commit 7a8e9c4

Browse files
committed
fix clippy and test commands to include all workspace members
1 parent d281d82 commit 7a8e9c4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Docs
2323
run: cargo doc --lib --no-deps --all-features
2424
- name: Clippy
25-
run: cargo clippy
25+
run: cargo clippy --workspace
2626
- name: Build
2727
run: cargo build --locked --workspace
2828

@@ -34,7 +34,7 @@ jobs:
3434
- uses: actions-rust-lang/setup-rust-toolchain@fb51252c7ba57d633bc668f941da052e410add48 # v1.13.0
3535
- uses: Swatinem/rust-cache@98c8021b550208e191a6a3145459bfc9fb29c4c0 # v2.8.0
3636
- name: Test
37-
run: cargo test --locked
37+
run: cargo test --locked --workspace
3838
- name: Test for simd_json feature
3939
run: cargo test --locked --package egui_json_tree --test image_snapshot_tests --features simd_json --no-default-features
4040

justfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
test:
2-
cargo test
2+
cargo test --workspace
33
cargo test --package egui_json_tree --test image_snapshot_tests --features simd_json --no-default-features
44

55
update_snapshots:

0 commit comments

Comments
 (0)