Skip to content

Commit feb800c

Browse files
committed
Check if cargo bin path is missing
1 parent 3f8e946 commit feb800c

2 files changed

Lines changed: 7 additions & 2 deletions

File tree

.github/workflows/ci-python.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,17 @@ jobs:
2424
python_version: "3.10"
2525

2626
- name: Install Maturin
27-
run: cargo binstall maturin
27+
run: |
28+
cargo binstall maturin --disable-telemetry
29+
ls -la /home/runner/.cargo/bin/
2830
2931
- name: Build rs (debug)
3032
run: cargo build --locked
3133

3234
- name: Maturin develop
33-
run: just build-py
35+
run: |
36+
ls -la /home/runner/.cargo/bin/
37+
just build-py
3438
3539
- name: Test
3640
run: just test-py

Justfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
export PATH := "/home/runner/.cargo/bin" + env_var("PATH")
12
# Setup
23
setup:
34
@echo "creating .venv"

0 commit comments

Comments
 (0)