Skip to content

Swept Surface

Swept Surface #1564

Workflow file for this run

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