Skip to content

Commit c49ad4f

Browse files
authored
Move apt-get install step (#365)
1 parent c230845 commit c49ad4f

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,10 @@ jobs:
4141
ports:
4242
- 5432:5432
4343
steps:
44+
- name: Install OS Packages
45+
run: |
46+
sudo apt-get update
47+
sudo apt-get install binutils libproj-dev gdal-bin libmemcached-dev
4448
- uses: actions/checkout@v3
4549
with:
4650
fetch-depth: 0
@@ -52,8 +56,6 @@ jobs:
5256
run: |
5357
pip install -U "pip>=23.1.1"
5458
pip install -U setuptools "tox-gh-actions==3.1.0" coverage
55-
sudo apt-get update
56-
sudo apt-get install binutils libproj-dev gdal-bin libmemcached-dev
5759
- name: Log versions
5860
run: |
5961
python --version

0 commit comments

Comments
 (0)