Skip to content

Commit 93c21c5

Browse files
authored
Fix CI: Run apt-get update before install (#316)
Co-authored-by: Adam Johnson <me@adamj.eu> fix yaml
1 parent 728da9c commit 93c21c5

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/test.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,9 @@ jobs:
3535
steps:
3636
- uses: actions/checkout@v3
3737
- name: Setup system dependencies
38-
run: sudo apt-get install binutils libproj-dev gdal-bin
38+
run: |
39+
sudo apt-get update
40+
sudo apt-get install binutils libproj-dev gdal-bin
3941
- name: Set up Python ${{ matrix.python-version }}
4042
uses: actions/setup-python@v4
4143
with:
@@ -56,7 +58,9 @@ jobs:
5658
steps:
5759
- uses: actions/checkout@v3
5860
- name: Setup system dependencies
59-
run: sudo apt-get install binutils libproj-dev gdal-bin
61+
run: |
62+
sudo apt-get update
63+
sudo apt-get install binutils libproj-dev gdal-bin
6064
- name: Set up Python ${{ matrix.python-version }}
6165
uses: actions/setup-python@v4
6266
with:

0 commit comments

Comments
 (0)