Skip to content

Commit ad12814

Browse files
committed
feat: begin guess-and-check
1 parent b50d2e8 commit ad12814

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/ci.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ jobs:
1515
name: Test
1616
runs-on: ${{ matrix.os }}
1717
strategy:
18+
fail-fast: false
1819
matrix:
1920
os:
2021
- ubuntu-latest
@@ -25,6 +26,12 @@ jobs:
2526
- uses: actions/checkout@v4
2627
- uses: astral-sh/setup-uv@v3
2728
- 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
2835
- name: Sync
2936
run: uv sync
3037
- name: Lint

0 commit comments

Comments
 (0)