We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b50d2e8 commit ad12814Copy full SHA for ad12814
.github/workflows/ci.yaml
@@ -15,6 +15,7 @@ jobs:
15
name: Test
16
runs-on: ${{ matrix.os }}
17
strategy:
18
+ fail-fast: false
19
matrix:
20
os:
21
- ubuntu-latest
@@ -25,6 +26,12 @@ jobs:
25
26
- uses: actions/checkout@v4
27
- uses: astral-sh/setup-uv@v3
28
- uses: Swatinem/rust-cache@v2
29
+ - name: Download libduckdb
30
+ if: ${{ matrix.os }} == "macos-latest"
31
+ run: |
32
+ wget https://github.com/duckdb/duckdb/releases/download/v1.1.3/libduckdb-osx-universal.zip
33
+ unzip libduckdb-osx-universal.zip -d libduckdb
34
+ echo "DYLD_LIBRARY_PATH=libduckdb:$DYLD_LIBRARY_PATH" >> $GITHUB_ENV
35
- name: Sync
36
run: uv sync
37
- name: Lint
0 commit comments