build123d/.github/workflows/test.yml
jdegenstein aedd0c85d0 incorporate zizmor github action security recommendations
add linux-aarch64 to benchmark and test

test most on python 3.14, one test on 3.10 + linux-x86_64
2026-04-23 15:11:31 -05:00

36 lines
839 B
YAML

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