Skip to content

Commit dc6ee32

Browse files
committed
Try to fix feature flag actions
1 parent 8a127c9 commit dc6ee32

1 file changed

Lines changed: 12 additions & 4 deletions

File tree

.github/workflows/build.yml

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,13 @@ jobs:
3737
steps:
3838
- uses: actions/checkout@v2
3939
- name: Build
40-
run: cargo build --package splashsurf_lib --all-features --verbose
40+
run: |
41+
cd splashsurf_lib
42+
cargo build --package splashsurf_lib --all-features --verbose
4143
- name: Run tests
42-
run: cargo test --package splashsurf_lib --all-features --verbose
44+
run: |
45+
cd splashsurf_lib
46+
cargo test --package splashsurf_lib --all-features --verbose
4347
4448
build_lib_no_default_features:
4549

@@ -48,6 +52,10 @@ jobs:
4852
steps:
4953
- uses: actions/checkout@v2
5054
- name: Build
51-
run: cargo build --package splashsurf_lib --no-default-features --verbose
55+
run: |
56+
cd splashsurf_lib
57+
cargo build --package splashsurf_lib --no-default-features --verbose
5258
- name: Run tests
53-
run: cargo test --package splashsurf_lib --no-default-features --verbose
59+
run: |
60+
cd splashsurf_lib
61+
cargo test --package splashsurf_lib --no-default-features --verbose

0 commit comments

Comments
 (0)