Skip to content

Merge remote-tracking branch 'origin/48-test-across-operating-systems' #39

Merge remote-tracking branch 'origin/48-test-across-operating-systems'

Merge remote-tracking branch 'origin/48-test-across-operating-systems' #39

Workflow file for this run

name: Test
on:
push:
jobs:
test:
name: ${{ matrix.platform }} py${{ matrix.python-version }}
runs-on: ${{ matrix.platform }}
strategy:
fail-fast: false
matrix:
platform: [ubuntu-latest, windows-latest, macos-latest]
python-version: ['3.10', '3.11']
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install ".[dev]"
- name: Test with pytest
run: |
pytest tests