|
24 | 24 | strategy:
|
25 | 25 | matrix:
|
26 | 26 | python-version:
|
27 | | - - "3.7" |
28 | 27 | - "3.8"
|
29 | 28 | - "3.9"
|
30 | 29 | - "3.10"
|
|
33 | 32 | uses: actions/setup-python@v2
|
34 | 33 | with:
|
35 | 34 | python-version: ${{ matrix.python-version }}
|
| 35 | + - run: python -m pip install --upgrade pip setuptools wheel |
36 | 36 | - uses: actions/checkout@v2
|
37 | 37 | - run: python setup.py test
|
38 | 38 | - name: Codecov
|
|
53 | 53 | uses: actions/setup-python@v2
|
54 | 54 | with:
|
55 | 55 | python-version: ${{ matrix.python-version }}
|
| 56 | + - run: python -m pip install --upgrade pip setuptools wheel |
56 | 57 | - uses: actions/checkout@v2
|
57 | 58 | - run: python -m pip install -e ".[${{ matrix.extras }}]"
|
58 | 59 | - run: python setup.py test
|
|
69 | 70 | matrix:
|
70 | 71 | python-version: ["3.10"]
|
71 | 72 | django-version:
|
72 | | - - "2.2.*" |
73 | | - - "3.2.*" |
74 | | - - "4.0.*" |
| 73 | + - "2.2a1" |
| 74 | + - "3.2a1" |
| 75 | + - "4.0a1" |
75 | 76 | services:
|
76 | 77 | postgres:
|
77 | 78 | image: postgres
|
|
86 | 87 | uses: actions/setup-python@v2
|
87 | 88 | with:
|
88 | 89 | python-version: ${{ matrix.python-version }}
|
| 90 | + - run: python -m pip install --upgrade pip setuptools wheel |
89 | 91 | - uses: actions/checkout@v2
|
90 | | - - run: python -m pip install psycopg2-binary Django==${{ matrix.django-version }} |
| 92 | + - run: python -m pip install psycopg2-binary Django~=${{ matrix.django-version }} |
91 | 93 | - run: python setup.py test
|
92 | 94 | env:
|
93 | 95 | DB_PORT: ${{ job.services.postgres.ports[5432] }}
|
|
0 commit comments