We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ddd5b80 commit 5dcbb26Copy full SHA for 5dcbb26
.github/workflows/test.yml
@@ -30,14 +30,17 @@ jobs:
30
31
steps:
32
- uses: actions/checkout@v2
33
+ - name: Install uv
34
+ uses: astral-sh/setup-uv@v5
35
- name: Setup python
36
uses: actions/setup-python@v1
37
with:
38
python-version: ${{ matrix.python-version }}
39
architecture: x64
- - run: pip install wheel
- - run: pip install -r requirements-dev.txt
40
- - run: pip install -r requirements.txt
+ - run: apt install --yes libgeos-dev
41
+ - run: uv pip install wheel
42
+ - run: uv pip install -r requirements-dev.txt
43
+ - run: uv pip install -r requirements.txt
44
- run: |
45
createdb jedeschule_test
46
psql jedeschule_test -c "CREATE EXTENSION postgis";
0 commit comments