Skip to content

add first decent version of find-closed-form #1

add first decent version of find-closed-form

add first decent version of find-closed-form #1

name: find-closed-form
on:
push:
paths:
- "packages/find-closed-form/**"
- ".github/workflows/find-closed-form.yml"
pull_request:
paths:
- "packages/find-closed-form/**"
- ".github/workflows/find-closed-form.yml"
workflow_dispatch:
defaults:
run:
working-directory: packages/find-closed-form
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.9", "3.11", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e ".[dev]"
- name: Run tests
run: pytest -v -k "not WolframCrossValidation"