Skip to content

Commit

Permalink
#25 Update apt cache before testing
Browse files Browse the repository at this point in the history
  • Loading branch information
roelderickx committed Nov 1, 2022
1 parent d1ae220 commit b59abe5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ jobs:
# with:
# python-version: "3.8"
- name: Install xmllint and GDAL
run: sudo apt-get install -y libxml2-utils gdal-bin libgdal-dev python3-gdal
run: |
sudo apt-get update
sudo apt-get install -y libxml2-utils gdal-bin libgdal-dev python3-gdal
- name: "Install python dependencies: cram and lxml"
run: |
python -m pip install --upgrade pip
Expand Down

0 comments on commit b59abe5

Please sign in to comment.