mirror of
https://github.com/gumyr/build123d.git
synced 2026-05-10 22:23:10 -07:00
add linux-aarch64 to benchmark and test test most on python 3.14, one test on 3.10 + linux-x86_64
36 lines
839 B
YAML
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
|