mirror of
https://github.com/gumyr/build123d.git
synced 2026-01-06 17:23:22 -08:00
26 lines
499 B
YAML
26 lines
499 B
YAML
name: tests
|
|
|
|
on: [push, pull_request]
|
|
jobs:
|
|
|
|
tests:
|
|
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@v3
|
|
- uses: ./.github/actions/setup
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
- name: test
|
|
run: |
|
|
python -m pytest
|
|
|