Skip to content

test+ci: cross-platform wrapper tests + GitHub Actions matrix #2

test+ci: cross-platform wrapper tests + GitHub Actions matrix

test+ci: cross-platform wrapper tests + GitHub Actions matrix #2

Workflow file for this run

name: tests
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
pytest:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
python-version: ["3.10", "3.11", "3.12"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install test deps
run: pip install pytest
- name: Run wrapper tests
run: python -m pytest tests/ -q
shell: bash