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 40f14bb commit aaec609Copy full SHA for aaec609
.github/workflows/ci.yml
@@ -36,8 +36,9 @@ jobs:
36
matrix:
37
python-version: [3.8]
38
django-version:
39
- - "2.2"
40
- - "3.0"
+ - "2.2.*"
+ - "3.0.*"
41
+ - "3.1.*"
42
services:
43
postgres:
44
image: postgres
@@ -53,7 +54,7 @@ jobs:
53
54
with:
55
python-version: ${{ matrix.python-version }}
56
- uses: actions/checkout@v2.0.0
- - run: python -m pip install psycopg2-binary Django~=${{ matrix.django-version }}
57
+ - run: python -m pip install psycopg2-binary Django==${{ matrix.django-version }}
58
- run: python setup.py test
59
env:
60
DB_PORT: ${{ job.services.postgres.ports[5432] }}
0 commit comments