Skip to content

Commit e1c2473

Browse files
also build python 3.9 eggs
1 parent 426e3c3 commit e1c2473

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

.github/workflows/python-tests.yml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,13 +75,21 @@ jobs:
7575
name: Python ${{ matrix.python_version }} eggs
7676
strategy:
7777
matrix:
78-
python_version: ['2.7', '3.5', '3.6', '3.7', '3.8']
78+
python_version: ['2.7', '3.5', '3.6', '3.7', '3.8', '3.9-dev']
7979
steps:
8080
- uses: actions/checkout@v1
81-
- name: Set up Python
82-
uses: actions/setup-python@v1
81+
- name: Setup python
82+
uses: actions/setup-python@v2
83+
if: matrix.python_version != '3.9-dev'
8384
with:
8485
python-version: ${{ matrix.python_version }}
86+
architecture: x64
87+
- name: Set up Python ${{ matrix.python_version }} (deadsnakes)
88+
uses: deadsnakes/[email protected]
89+
if: matrix.python_version == '3.9-dev'
90+
with:
91+
python-version: ${{ matrix.python_version }}
92+
architecture: x64
8593
- name: Install dependencies
8694
run: |
8795
python -m pip install --upgrade pip

0 commit comments

Comments
 (0)