File tree Expand file tree Collapse file tree 2 files changed +13
-12
lines changed
Expand file tree Collapse file tree 2 files changed +13
-12
lines changed Original file line number Diff line number Diff line change 1111
1212jobs :
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 :
Original file line number Diff line number Diff line change @@ -7,6 +7,11 @@ members = [
77 " pysplashsurf" ,
88]
99
10+ default-members = [
11+ " splashsurf_lib" ,
12+ " splashsurf"
13+ ]
14+
1015[profile .release ]
1116lto = true
1217codegen-units = 1
You can’t perform that action at this time.
0 commit comments