We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 011cc6c commit 5c1e6efCopy full SHA for 5c1e6ef
.github/workflows/test.yml
@@ -19,6 +19,7 @@ jobs:
19
matrix:
20
python-version: [ '3.5', '3.6', '3.7', '3.8' ]
21
postgres-version: [ '9.6', '12.1' ]
22
+ deps-version: [ 'lowest', 'highest' ]
23
services:
24
postgres:
25
image: fantix/postgres-ssl:${{ matrix.postgres-version }}
@@ -46,6 +47,10 @@ jobs:
46
47
run: |
48
curl -sSL https://raw.githubusercontent.com/sdispater/poetry/master/get-poetry.py | python
49
$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
54
- name: Test with pytest
55
env:
56
DB_HOST: localhost
0 commit comments