Skip to content

Commit

Permalink
Run apt update before install in github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
JKoetsier committed Nov 27, 2023
1 parent 3d703be commit f2eeaf5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
sudo apt install -y libgdal30
sudo apt update -y && apt install -y libgdal30
python -m pip install --upgrade pip
python -m pip install .[django,tests]
- name: Test
Expand Down

0 comments on commit f2eeaf5

Please sign in to comment.