Skip to content

Commit 6310e89

Browse files
authored
Run apt-get update in CI (#1313)
1 parent c1794be commit 6310e89

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
@@ -49,7 +49,9 @@ jobs:
4949
steps:
5050
- uses: actions/checkout@v3
5151
- name: Setup system dependencies
52-
run: sudo apt-get install binutils libproj-dev gdal-bin
52+
run: |
53+
sudo apt-get update
54+
sudo apt-get install binutils libproj-dev gdal-bin
5355
- name: Set up Python ${{ matrix.python-version }}
5456
uses: actions/setup-python@v4
5557
with:
@@ -76,7 +78,9 @@ jobs:
7678
steps:
7779
- uses: actions/checkout@v3
7880
- name: Setup system dependencies
79-
run: sudo apt-get install binutils libproj-dev gdal-bin
81+
run: |
82+
sudo apt-get update
83+
sudo apt-get install binutils libproj-dev gdal-bin
8084
- name: Set up Python ${{ matrix.python-version }}
8185
uses: actions/setup-python@v4
8286
with:

0 commit comments

Comments
 (0)