ci: macOS and windows added to pytest workflow

This commit is contained in:
Fabian Joswig 2022-01-07 11:59:06 +01:00
parent af95667ffb
commit cd0f38c77d

View file

@ -11,11 +11,17 @@ on:
jobs:
pytest:
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
fail-fast: true
matrix:
os: [ubuntu-latest]
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
include:
- os: macos-latest
python-version: 3.9
- os: windows-latest
python-version: 3.9
steps:
- name: Checkout source