include:
- postgres: 11
python: 3.6
- toxenv: py36
- postgres: 12
python: 3.7
- toxenv: py37
- postgres: 12
python: 3.8
- toxenv: py38
env:
PSYCOPG3_IMPL: python
- name: install tox
run: pip install tox
- name: run tests
- run: tox -c psycopg3 -e ${{ matrix.toxenv }}
+ run: tox -c psycopg3 -e ${{ matrix.python }}
c:
name: C implementation
include:
- postgres: 10
python: 3.6
- toxenv: py36
- postgres: 11
python: 3.7
- toxenv: py37
- postgres: 12
python: 3.8
- toxenv: py38
env:
PSYCOPG3_IMPL: c
- name: install tox
run: pip install tox
- name: run tests
- run: tox -c psycopg3_c -e ${{ matrix.toxenv }}
+ run: tox -c psycopg3_c -e ${{ matrix.python }}