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: jobs:
pytest: pytest:
runs-on: ubuntu-latest runs-on: ${{ matrix.os }}
strategy: strategy:
fail-fast: true fail-fast: true
matrix: matrix:
os: [ubuntu-latest]
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"] 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: steps:
- name: Checkout source - name: Checkout source