Run tests on Windows too, refs #511

This commit is contained in:
Simon Willison 2021-07-10 16:44:47 -07:00
commit 79dff15050

View file

@ -4,10 +4,11 @@ on: [push]
jobs:
test:
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9]
os: [ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}