1
0
mirror of https://github.com/django/django.git synced 2025-09-10 11:09:12 +00:00

Ensured apt repo is updated before installing deps in "postgis" GitHub Action.

This commit is contained in:
Natalia 2025-08-27 09:14:54 -03:00 committed by nessita
parent 4c71e33440
commit 1b0c4d5ea5

View File

@ -41,8 +41,10 @@ jobs:
python-version: '3.13' python-version: '3.13'
cache: 'pip' cache: 'pip'
cache-dependency-path: 'tests/requirements/py3.txt' cache-dependency-path: 'tests/requirements/py3.txt'
- name: Update apt repo
run: sudo apt update
- name: Install libmemcached-dev for pylibmc - name: Install libmemcached-dev for pylibmc
run: sudo apt install libmemcached-dev run: sudo apt install -y libmemcached-dev
- name: Install geospatial dependencies - name: Install geospatial dependencies
run: sudo apt install -y binutils libproj-dev gdal-bin run: sudo apt install -y binutils libproj-dev gdal-bin
- name: Print PostGIS versions - name: Print PostGIS versions