Skip to content

Swept Surface

Swept Surface #1861

Workflow file for this run

name: Full builds and tests
on:
pull_request
permissions:
contents: read
concurrency:
group: ${{ github.event.pull_request.number }}
cancel-in-progress: true
jobs:
build_and_tests:
runs-on: ${{ matrix.os }}
env:
SPLINEPY_GITHUB_ACTIONS_BUILD: True
strategy:
matrix:
python-version: [3.9, "3.10", "3.11", "3.12", "3.13"]
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Set up ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: build splinepy
run: pip install ".[test]" -v
- name: test
run: |
pytest