build123d/.github/workflows/test.yml

25 lines
588 B
YAML

name: tests
on: [push, pull_request, workflow_dispatch]
jobs:
tests:
strategy:
fail-fast: false
matrix:
python-version: [
"3.10",
"3.14",
]
os: [macos-15-intel, macos-14, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v6
- uses: ./.github/actions/setup/
with:
python-version: ${{ matrix.python-version }}
optional-dependencies: "development"
- name: test
run: |
python -m pytest -n auto --benchmark-disable