summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRonny Pfannschmidt <opensource@ronnypfannschmidt.de>2020-05-24 13:14:15 +0200
committerRonny Pfannschmidt <opensource@ronnypfannschmidt.de>2020-05-24 13:17:12 +0200
commit426e3c319a65dfcc90e76fee4dd4c01e31517d1b (patch)
tree8912dab15b3f28fa6ec4980330522ed0f0d623cc
parent360cd07f2b84618db13da5a0c305624ad559b32f (diff)
downloadsetuptools-scm-426e3c319a65dfcc90e76fee4dd4c01e31517d1b.tar.gz
add python3.9 via deadsnakes action
-rw-r--r--.github/workflows/python-tests.yml13
1 files changed, 12 insertions, 1 deletions
diff --git a/.github/workflows/python-tests.yml b/.github/workflows/python-tests.yml
index 712648f..35d675a 100644
--- a/.github/workflows/python-tests.yml
+++ b/.github/workflows/python-tests.yml
@@ -22,11 +22,22 @@ jobs:
python_version: "2.7"
- os: windows-latest
python_version: "pypy2"
+ include:
+ - os: ubuntu-latest
+ python_version: '3.9-dev'
+
name: ${{ matrix.os }} - Python ${{ matrix.python_version }}
steps:
- uses: actions/checkout@v1
- name: Setup python
- uses: actions/setup-python@v1
+ uses: actions/setup-python@v2
+ if: matrix.python_version != '3.9-dev'
+ with:
+ python-version: ${{ matrix.python_version }}
+ architecture: x64
+ - name: Set up Python ${{ matrix.python_version }} (deadsnakes)
+ uses: deadsnakes/action@v1.0.0
+ if: matrix.python_version == '3.9-dev'
with:
python-version: ${{ matrix.python_version }}
architecture: x64