Skip to content

Commit 6f9d503

Browse files
committed
fix: ci
1 parent 71c776f commit 6f9d503

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
name: Test
1919
runs-on: ${{ matrix.os.runner }}
2020
env:
21-
DUCKDB_LIB_DIR: /opt/duckdb
21+
DUCKDB_LIB_DIR: ${{ github.workspace }}/opt/duckdb
2222
strategy:
2323
fail-fast: false
2424
matrix:
@@ -43,7 +43,7 @@ jobs:
4343
- name: Install libduckdb
4444
run: |
4545
wget https://github.com/duckdb/duckdb/releases/download/v${{ env.duckdb-version }}/libduckdb-${{ matrix.os.duckdb-slug }}.zip
46-
unzip libduckdb-${{ matrix.os.duckdb-slug }}.zip -d /opt/duckdb
46+
unzip libduckdb-${{ matrix.os.duckdb-slug }}.zip -d ${{ github.workspace }}/opt/duckdb
4747
- name: Sync
4848
run: uv sync --no-install-project
4949
- name: Build directly with maturin

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ name = "stacrs"
99
crate-type = ["cdylib"]
1010

1111
[dependencies]
12+
clap = "4.5.30"
1213
geojson = "0.24.1"
1314
pyo3 = { version = "0.23.4", features = ["abi3-py310"] }
1415
pyo3-async-runtimes = { version = "0.23.0", features = [
@@ -31,5 +32,4 @@ stac-cli = { git = "https://github.com/stac-utils/stac-rs", default-features = f
3132
] }
3233
stac-duckdb = { git = "https://github.com/stac-utils/stac-rs" }
3334
thiserror = "2.0.11"
34-
clap = "4.5.30"
3535
tokio = { version = "1.43.0", features = ["rt-multi-thread"] }

0 commit comments

Comments
 (0)