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 02f3a27 commit aac5672Copy full SHA for aac5672
.github/workflows/ci.yml
@@ -28,15 +28,11 @@ jobs:
28
distribution: 'temurin'
29
cache: maven
30
31
- - name: Set up Python
32
- uses: actions/setup-python@v5
33
- with:
34
- python-version: '3.11'
35
-
36
- - name: Install zarrita
+ - name: Set up uv and zarrita
37
run: |
38
- python -m venv venv_zarrita
39
- if [ "${{ runner.os }}" = "Windows" ]; then venv_zarrita/Scripts/pip install zarrita; else venv_zarrita/bin/pip install zarrita; fi
+ curl -Ls https://github.com/astral-sh/uv/releases/latest/download/uv-installer.sh | bash
+ uv venv && uv init
+ uv add zarrita
40
41
- name: Download testdata
42
0 commit comments