diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2020-07-12 11:18:20 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-07-12 11:18:20 -0400 |
| commit | 6ecd778888512de5be198ffa4bb6ea33ee6f841f (patch) | |
| tree | b48c5350d682e0152ef00d4ff3796cec894d0f50 | |
| parent | 9e16d5399bb6b01aa0d7a73159765f064f88db22 (diff) | |
| parent | 0039de02e84a2256d6d4763fb76836dd4748f3e4 (diff) | |
| download | python-setuptools-git-6ecd778888512de5be198ffa4bb6ea33ee6f841f.tar.gz | |
Merge pull request #2253 from hugovk/gha-3.9-dev
Test Python 3.9-dev on GitHub Actions
| -rw-r--r-- | .github/workflows/python-tests.yml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/.github/workflows/python-tests.yml b/.github/workflows/python-tests.yml index 5a598084..f2188d38 100644 --- a/.github/workflows/python-tests.yml +++ b/.github/workflows/python-tests.yml @@ -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 @@ -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 |
