Run tests against Ubuntu, macOS and Windows

With tests fixes for Windows, thanks to @nieuwenhoven in #225. Closes #232
This commit is contained in:
Simon Willison 2021-02-14 12:39:54 -08:00 committed by GitHub
commit f51a1f6c3c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 10 additions and 7 deletions

View file

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