Skip to content

Commit 2b7bcd2

Browse files
committed
cargo: test every crate by default
1 parent 8ae6cf0 commit 2b7bcd2

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

.github/workflows/build-dev-and-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ jobs:
108108
109109
- name: 🧪 Run Rust tests
110110
run: |
111-
mold -run cargo test --all-features --workspace
111+
mold -run cargo test --all-features
112112
113113
- name: 📃 Generate code documentation info for website
114114
if: github.ref == 'refs/heads/master'

Cargo.toml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,20 +25,29 @@ members = [
2525
"proc-macros",
2626
]
2727
default-members = [
28+
"desktop",
29+
"desktop/wrapper",
2830
"editor",
2931
"frontend/wasm",
32+
"libraries/dyn-any",
33+
"libraries/path-bool",
34+
"libraries/math-parser",
35+
"node-graph/gapplication-io",
3036
"node-graph/gbrush",
3137
"node-graph/gcore",
3238
"node-graph/gcore-shaders",
33-
"node-graph/gstd",
3439
"node-graph/gmath-nodes",
3540
"node-graph/gpath-bool",
3641
"node-graph/graph-craft",
3742
"node-graph/graphene-cli",
3843
"node-graph/graster-nodes",
44+
"node-graph/gstd",
3945
"node-graph/gsvg-renderer",
4046
"node-graph/interpreted-executor",
4147
"node-graph/node-macro",
48+
"node-graph/preprocessor",
49+
"node-graph/wgpu-executor",
50+
"proc-macros",
4251
]
4352
resolver = "2"
4453

0 commit comments

Comments
 (0)