Skip to content

Commit 5c1e6ef

Browse files
committed
added compatibility tests
* refs #665
1 parent 011cc6c commit 5c1e6ef

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ jobs:
1919
matrix:
2020
python-version: [ '3.5', '3.6', '3.7', '3.8' ]
2121
postgres-version: [ '9.6', '12.1' ]
22+
deps-version: [ 'lowest', 'highest' ]
2223
services:
2324
postgres:
2425
image: fantix/postgres-ssl:${{ matrix.postgres-version }}
@@ -46,6 +47,10 @@ jobs:
4647
run: |
4748
curl -sSL https://raw.githubusercontent.com/sdispater/poetry/master/get-poetry.py | python
4849
$HOME/.poetry/bin/poetry install
50+
- name: Use lowest dependencies versions
51+
if: matrix.deps-version == 'lowest'
52+
run: |
53+
$HOME/.poetry/bin/poetry run pip install asyncpg==0.18 SQLAlchemy==1.3
4954
- name: Test with pytest
5055
env:
5156
DB_HOST: localhost

0 commit comments

Comments
 (0)