Skip to content

Commit 3b7d38a

Browse files
committed
Remove pysplashsurf from workspace default-members
1 parent 9a013c2 commit 3b7d38a

File tree

2 files changed

+13
-12
lines changed

2 files changed

+13
-12
lines changed

.github/workflows/build.yml

Lines changed: 8 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -11,37 +11,33 @@ env:
1111

1212
jobs:
1313
check_format:
14-
1514
runs-on: ubuntu-latest
16-
1715
steps:
1816
- uses: actions/checkout@v4
1917
- name: Check format
2018
run: cargo fmt -- --check
2119

2220
build_workspace:
23-
2421
runs-on: ubuntu-latest
25-
2622
steps:
2723
- uses: actions/checkout@v4
2824
with:
2925
lfs: true
30-
- name: Check
31-
run: cargo check --verbose
26+
- name: Check (default members)
27+
run: cargo check
3228
- name: Check with examples
33-
run: cargo check --examples --verbose
29+
run: cargo check --examples
30+
- name: Check workspace (including pySplashsurf)
31+
run: cargo check --workspace --all-targets
3432
- name: Build
35-
run: cargo build --verbose
33+
run: cargo build
3634
- name: Run tests
37-
run: cargo test --verbose
35+
run: cargo test
3836
- name: Build (release)
39-
run: cargo build --release --verbose
37+
run: cargo build --release
4038

4139
build_lib_all_features:
42-
4340
runs-on: ubuntu-latest
44-
4541
steps:
4642
- uses: actions/checkout@v4
4743
with:

Cargo.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ members = [
77
"pysplashsurf",
88
]
99

10+
default-members = [
11+
"splashsurf_lib",
12+
"splashsurf"
13+
]
14+
1015
[profile.release]
1116
lto = true
1217
codegen-units = 1

0 commit comments

Comments
 (0)