mirror of
https://github.com/gumyr/build123d.git
synced 2026-02-10 09:43:36 -08:00
46 lines
964 B
YAML
46 lines
964 B
YAML
name: tests
|
|
|
|
on: [push, pull_request, workflow_dispatch]
|
|
jobs:
|
|
|
|
tests_x86_64:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
python-version: [
|
|
"3.9",
|
|
"3.10",
|
|
#"3.11"
|
|
]
|
|
os: [macos-latest, ubuntu-latest, windows-latest]
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: ./.github/actions/setup/
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
- name: test
|
|
run: |
|
|
python -m pytest
|
|
|
|
tests_arm64:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
python-version: [
|
|
#"3.9",
|
|
"3.10",
|
|
#"3.11"
|
|
]
|
|
os: [macos-14]
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: ./.github/actions/setup-macos-arm64/
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
- name: test
|
|
run: |
|
|
python -m pytest
|