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 d371d14 commit 3b895fdCopy full SHA for 3b895fd
.github/workflows/ci.yaml
@@ -48,10 +48,12 @@ jobs:
48
mkdir -p ${{ github.workspace }}/opt/duckdb
49
unzip libduckdb-${{ matrix.os.duckdb-slug }}.zip -d ${{ github.workspace }}/opt/duckdb
50
- name: Sync
51
- run: uv sync --no-install-project
52
- - name: Build directly with maturin
53
- run: uv run maturin dev --uv
+ run: uv sync --all-extras
54
- name: Lint
55
run: scripts/lint
56
- name: Test
57
run: scripts/test
+ - name: Sync w/o extras
+ run: uv sync
58
+ - name: Test w/o extras
59
+ run: uv run pytest
0 commit comments