Skip to content

Commit 72829c8

Browse files
committed
Fix working directory of CI commands
1 parent 3fd7b67 commit 72829c8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/rust.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- uses: Swatinem/rust-cache@v2
2525

2626
- name: Run
27-
run: cd geopolars && cargo fmt --all -- --check
27+
run: cargo fmt --all -- --check
2828

2929
clippy:
3030
name: Clippy
@@ -47,7 +47,7 @@ jobs:
4747
sudo apt-get install libprotobuf-dev protobuf-compiler libgeos-dev
4848
4949
- name: "clippy --all"
50-
run: cd geopolars && cargo clippy --all --all-features --tests -- -D warnings
50+
run: cargo clippy --all --all-features --tests -- -D warnings
5151

5252
check:
5353
name: Check
@@ -69,7 +69,7 @@ jobs:
6969
sudo apt-get install libgeos-dev
7070
7171
- name: "cargo check"
72-
run: cd geopolars && cargo check --all --all-features
72+
run: cargo check --all --all-features
7373

7474
test:
7575
name: Tests
@@ -91,4 +91,4 @@ jobs:
9191
sudo apt-get install libgeos-dev
9292
9393
- name: "cargo test"
94-
run: cd geopolars && cargo test --all --all-features
94+
run: cargo test --all --all-features

0 commit comments

Comments
 (0)