Skip to content

Update test workflows #105

Update test workflows

Update test workflows #105

Workflow file for this run

name: Test
on:
push:
pull_request:
jobs:
test:
name: ${{ matrix.platform }} py${{ matrix.python-version }}
runs-on: ${{ matrix.platform }}
strategy:
fail-fast: false
matrix:
platform: [ubuntu-latest, windows-latest, macos-13]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Run tests
uses: ./.github/actions/test
with:
python-version: ${{ matrix.python-version }}