summaryrefslogtreecommitdiff
path: root/.github/workflows/ci-linux.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/ci-linux.yml')
-rw-r--r--.github/workflows/ci-linux.yml21
1 files changed, 11 insertions, 10 deletions
diff --git a/.github/workflows/ci-linux.yml b/.github/workflows/ci-linux.yml
index a1c60ed..cc5639a 100644
--- a/.github/workflows/ci-linux.yml
+++ b/.github/workflows/ci-linux.yml
@@ -7,25 +7,26 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
- tox: [
- {'py': '2.7', 'env': 'py27'},
- {'py': '3.5', 'env': 'py35'},
- {'py': '3.6', 'env': 'py36'},
- {'py': '3.7', 'env': 'py37'},
- {'py': 'pypy2', 'env': 'pypy'},
- {'py': 'pypy3', 'env': 'pypy3'}
+ py: [
+ '2.7',
+ '3.5',
+ '3.6',
+ '3.7',
+ '3.8',
+ 'pypy2',
+ 'pypy3'
]
- name: "Python: ${{ matrix.tox.py }}"
+ name: "Python: ${{ matrix.py }}"
steps:
- uses: actions/checkout@master
- name: Setup python
uses: actions/setup-python@v1
with:
- python-version: ${{ matrix.tox.py }}
+ python-version: ${{ matrix.py }}
architecture: x64
- run: pip install tox
- name: Running tox
- run: tox -e ${{ matrix.tox.env }}
+ run: tox -e py
coverage:
runs-on: ubuntu-latest
name: Validate coverage for Python 2/3