diff options
| author | Natalia <124304+nessita@users.noreply.github.com> | 2025-08-27 09:14:54 -0300 |
|---|---|---|
| committer | nessita <124304+nessita@users.noreply.github.com> | 2025-08-27 11:33:13 -0300 |
| commit | 1b0c4d5ea58dabe64e51131e8fc56c78647d0ebb (patch) | |
| tree | 1050d29288258fa84bfafed03685c658c876b2f5 /.github | |
| parent | 4c71e334401a3e83c013419d0e2211543e7e873b (diff) | |
Ensured apt repo is updated before installing deps in "postgis" GitHub Action.
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/postgis.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/postgis.yml b/.github/workflows/postgis.yml index 940f7d4248..fa418eb920 100644 --- a/.github/workflows/postgis.yml +++ b/.github/workflows/postgis.yml @@ -41,8 +41,10 @@ jobs: python-version: '3.13' cache: 'pip' cache-dependency-path: 'tests/requirements/py3.txt' + - name: Update apt repo + run: sudo apt update - name: Install libmemcached-dev for pylibmc - run: sudo apt install libmemcached-dev + run: sudo apt install -y libmemcached-dev - name: Install geospatial dependencies run: sudo apt install -y binutils libproj-dev gdal-bin - name: Print PostGIS versions |
