Skip to content

Commit

Permalink
Add py3.9 to CI workflow (#1169)
Browse files Browse the repository at this point in the history
  • Loading branch information
atugushev authored Jun 30, 2020
1 parent e49c10d commit 7503ad7
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 3 deletions.
17 changes: 15 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
os:
- Ubuntu
- Windows
- MacOS
- macOS
python-version:
- 3.8
- 2.7
Expand All @@ -29,16 +29,29 @@ jobs:
pip-version:
- "latest"
- "20.0"
include:
- os: Ubuntu
python-version: 3.9-dev
pip-version: latest

env:
PY_COLORS: 1
TOXENV: pip${{ matrix.pip-version }}-coverage
TOX_PARALLEL_NO_SPINNER: 1
steps:
- uses: actions/checkout@master
- name: Set up Python ${{ matrix.python-version }}
- name: Set up Python ${{ matrix.python-version }} from GitHub
if: "!endsWith(matrix.python-version, '-dev')"
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Set up Python ${{ matrix.python-version }} from deadsnakes
if: endsWith(matrix.python-version, '-dev')
uses: deadsnakes/action@v1.0.0
with:
python-version: ${{ matrix.python-version }}
- name: Log python version info (${{ matrix.python-version }})
run: python --version --version
- name: Install test dependencies
run: python -m pip install -U tox virtualenv
- name: Prepare test environment
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tox]
envlist =
# NOTE: keep this in sync with the env list in .travis.yml for tox-travis.
py{27,35,36,37,38,py,py3}-pip{20.0,20.1,latest,master}-coverage
py{27,35,36,37,38,39,py,py3}-pip{20.0,20.1,latest,master}-coverage
checkqa
readme
skip_missing_interpreters = True
Expand Down

0 comments on commit 7503ad7

Please sign in to comment.