Skip to content

Commit 93119f2

Browse files
committed
Test 3.10-dev on all OS on GHA
1 parent 6d1e989 commit 93119f2

1 file changed

Lines changed: 1 addition & 11 deletions

File tree

.github/workflows/test.yml

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -8,35 +8,25 @@ jobs:
88
strategy:
99
fail-fast: false
1010
matrix:
11-
python-version: ["pypy3", "3.6", "3.7", "3.8", "3.9"]
11+
python-version: ["pypy3", "3.6", "3.7", "3.8", "3.9", "3.10-dev"]
1212
os: [ubuntu-latest, macos-latest, windows-latest]
1313
include:
1414
# Include new variables for Codecov
1515
- { codecov-flag: GHA_Ubuntu, os: ubuntu-latest }
1616
- { codecov-flag: GHA_macOS, os: macos-latest }
1717
- { codecov-flag: GHA_Windows, os: windows-latest }
18-
# Dev versions
19-
- { python-version: 3.10-dev, os: ubuntu-18.04 }
2018

2119
steps:
2220
- uses: actions/checkout@v2
2321

24-
- name: Set up Python ${{ matrix.python }} (deadsnakes)
25-
uses: deadsnakes/action@v1.0.0
26-
if: endsWith(matrix.python-version, '-dev')
27-
with:
28-
python-version: ${{ matrix.python-version }}
29-
3022
- name: Set up Python ${{ matrix.python-version }}
31-
if: "!endsWith(matrix.python-version, '-dev')"
3223
uses: actions/setup-python@v2
3324
with:
3425
python-version: ${{ matrix.python-version }}
3526

3627
- name: Get pip cache dir
3728
id: pip-cache
3829
run: |
39-
python -m pip install -U "pip>=20.1"
4030
echo "::set-output name=dir::$(pip cache dir)"
4131
4232
- name: pip cache

0 commit comments

Comments
 (0)