Skip to content

Commit

Permalink
also run tests on windows-latest python3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
anthrotype committed Mar 16, 2021
1 parent f58c447 commit 8d1b391
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,17 +22,21 @@ jobs:
- name: Run style and typing checks
run: tox -e lint
test:
runs-on: ${{ matrix.platform }}
runs-on: ${{ matrix.config.platform }}
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]
platform: [ubuntu-latest]
config:
- {platform: ubuntu-latest, python-version: 3.6}
- {platform: ubuntu-latest, python-version: 3.7}
- {platform: ubuntu-latest, python-version: 3.8}
- {platform: ubuntu-latest, python-version: 3.9}
- {platform: windows-latest, python-version: 3.9}
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
- name: Set up Python ${{ matrix.config.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
python-version: ${{ matrix.config.python-version }}
- name: Install tox
run: pip install tox
- name: Run the tests
Expand Down

0 comments on commit 8d1b391

Please sign in to comment.