Skip to content

Commit

Permalink
ci: also run Windows CI with Python 3.4, 3.5, 3.6, 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
rhysd committed Jan 30, 2020
1 parent 9af0c85 commit f93efc5
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion .github/workflows/windows-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,28 @@ on: [push, pull_request]
jobs:
ci:
name: Run tests
strategy:
matrix:
py: [3.4, 3.5, 3.6, 3.7, 3.8]
include:
- py: 3.4
tox: py34-coverage
- py: 3.5
tox: py35-coverage
- py: 3.6
tox: py36-coverage
- py: 3.7
tox: py37-coverage
- py: 3.8
tox: py38-coverage
env:
TOXENV: py38-coverage
TOXENV: ${{ matrix.tox }}
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v1
with:
python-version: ${{ matrix.py }}
- name: Install tox
run: |
python -m pip install --upgrade pip
Expand Down

0 comments on commit f93efc5

Please sign in to comment.