Update ci_psycopg3_gis.yml #37
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI-psycopg2 | |
'on': | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build: | |
env: | |
POSTGRES_USER: postgres | |
PGPASSWORD: postgres | |
runs-on: '${{ matrix.os }}' | |
strategy: | |
matrix: | |
include: | |
- os: ubuntu-latest | |
python-version: '3.8' | |
django-version: '3.2.23' | |
- os: ubuntu-latest | |
python-version: '3.9' | |
django-version: '3.2.23' | |
- os: ubuntu-latest | |
python-version: '3.10' | |
django-version: '3.2.23' | |
- os: ubuntu-latest | |
python-version: '3.8' | |
django-version: '4.2.9' | |
- os: ubuntu-latest | |
python-version: '3.9' | |
django-version: '4.2.9' | |
- os: ubuntu-latest | |
python-version: '3.10' | |
django-version: '4.2.9' | |
- os: ubuntu-latest | |
python-version: '3.11' | |
django-version: '4.2.9' | |
- os: ubuntu-latest | |
python-version: '3.12' | |
django-version: '4.2.9' | |
services: | |
postgres: | |
image: postgres | |
env: | |
POSTGRES_USER: postgres | |
POSTGRES_PASSWORD: postgres | |
options: >- | |
--health-cmd pg_isready | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
ports: | |
- 5432:5432 | |
steps: | |
- name: 'Set up Python ${{ matrix.python-version }}' | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '${{ matrix.python-version }}' | |
- uses: actions/checkout@v4 | |
- run: sudo apt-get update | |
- run: pip install django==${{ matrix.django-version}} | |
- run: pip install psycopg2 | |
- run: pip install psycogreen | |
- run: pip install gevent | |
- run: pip install . | |
- run: python runtests_psycopg2.py |