Skip to content

Commit

Permalink
ci: add gdal in dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
danipran committed Apr 16, 2024
1 parent b989b71 commit 6275251
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,11 @@ jobs:
run: python -m pip install --upgrade pip setuptools wheel

- name: Install dependencies
run: python -m pip install --upgrade codecov tox
run: |
sudo apt-add-repository ppa:ubuntugis/ppa
sudo apt-get update
sudo apt-get install gdal-bin libgdal-dev
python -m pip install --upgrade codecov tox
- name: Run tox targets for Python ${{ matrix.python_version }}
run: tox run -f py$(echo ${{ matrix.python_version }} | tr -d .) ${{ env.TOX_POSARGS }}
Expand Down

0 comments on commit 6275251

Please sign in to comment.