Skip to content

Commit

Permalink
Merge pull request #2253 from hugovk/gha-3.9-dev
Browse files Browse the repository at this point in the history
Test Python 3.9-dev on GitHub Actions
  • Loading branch information
jaraco authored Jul 12, 2020
2 parents 9e16d53 + 0039de0 commit 6ecd778
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/python-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ jobs:
- macOS-latest
# - windows-2019
# - windows-2016
include:
# Dev versions
- { python-version: 3.9-dev, os: ubuntu-20.04 }

env:
NETWORK_REQUIRED: 1
Expand All @@ -38,8 +41,14 @@ jobs:

steps:
- uses: actions/checkout@master
- name: Set up Python ${{ matrix.python-version }} (deadsnakes)
uses: deadsnakes/action@v1.0.0
if: endsWith(matrix.python-version, '-dev')
with:
python-version: ${{ matrix.python-version }}
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1.1.1
if: "!endsWith(matrix.python-version, '-dev')"
with:
python-version: ${{ matrix.python-version }}
- name: Log Python version
Expand Down

0 comments on commit 6ecd778

Please sign in to comment.