Skip to content

Check if Python 3.12 works #603

Check if Python 3.12 works

Check if Python 3.12 works #603

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
paths-ignore:
- 'doc/**'
workflow_dispatch:
# allow manual runs on branches without a PR
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
pre-commit:
name: Pre-commit checks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: '3.10'
- uses: pre-commit/[email protected]
test:
needs: [pre-commit]
name: Test on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v4
- name: Build wheels and run pytest
uses: pypa/[email protected]
- uses: actions/upload-artifact@v3
with:
path: ./wheelhouse/*.whl