Skip to content

Commit

Permalink
Github Actions: add apt-get update
Browse files Browse the repository at this point in the history
  • Loading branch information
mtmail committed Nov 24, 2023
1 parent 007448f commit 84fcde5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ jobs:
python-version: 3.11

- name: Install Ubuntu dependencies
run: sudo apt-get install -y -qq --no-install-recommends python3-gdal python3-pip python3-pytest unzip
run: |
sudo apt-get update -qq
sudo apt-get install -y -qq --no-install-recommends python3-gdal python3-pip python3-pytest unzip
- name: Install Python dependencies
run: pip install -r requirements.txt
Expand Down

0 comments on commit 84fcde5

Please sign in to comment.