Skip to content

Commit e4d573f

Browse files
committed
Fix Actions
1 parent b954d70 commit e4d573f

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

.github/workflows/build.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Build and test
1+
name: Rust library & CLI
22

33
on:
44
push:
@@ -34,8 +34,8 @@ jobs:
3434
run: cargo check --examples
3535
- name: Check workspace (including pySplashsurf)
3636
run: cargo check --workspace --all-targets
37-
- name: Build
38-
run: cargo build (excluding pySplashsurf)
37+
- name: Build (excluding pySplashsurf)
38+
run: cargo build
3939
- name: Run tests
4040
run: cargo test
4141
- name: Build (release)
@@ -50,13 +50,13 @@ jobs:
5050
lfs: true
5151
- name: Build
5252
run: |
53-
cargo build --manifest-path="splashsurf_lib/Cargo.toml" --all-targets --all-features --verbose
53+
cargo build --manifest-path="splashsurf_lib/Cargo.toml" --all-targets --all-features
5454
- name: Run tests
5555
run: |
56-
cargo test --manifest-path="splashsurf_lib/Cargo.toml" --all-features --verbose
56+
cargo test --manifest-path="splashsurf_lib/Cargo.toml" --all-features
5757
- name: Run tests release mode
5858
run: |
59-
cargo test --manifest-path="splashsurf_lib/Cargo.toml" --release --all-features --verbose
59+
cargo test --manifest-path="splashsurf_lib/Cargo.toml" --release --all-features
6060
6161
build_lib_no_default_features:
6262
name: Build splashsurf_lib with no default features
@@ -67,10 +67,10 @@ jobs:
6767
lfs: true
6868
- name: Build
6969
run: |
70-
cargo build --manifest-path="splashsurf_lib/Cargo.toml" --all-targets --no-default-features --verbose
70+
cargo build --manifest-path="splashsurf_lib/Cargo.toml" --all-targets --no-default-features
7171
- name: Run tests
7272
run: |
73-
cargo test --manifest-path="splashsurf_lib/Cargo.toml" --no-default-features --verbose
73+
cargo test --manifest-path="splashsurf_lib/Cargo.toml" --no-default-features
7474
7575
publish:
7676
name: Publish to crates.io

.github/workflows/pysplashsurf_CI.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
# maturin generate-ci github
55
#
6-
name: pySplashsurf CI
6+
name: Python bindings
77

88
on:
99
push:

0 commit comments

Comments
 (0)