Skip to content

Eliminate label clash between panel (a) right axis and panel (b) left… #43

Eliminate label clash between panel (a) right axis and panel (b) left…

Eliminate label clash between panel (a) right axis and panel (b) left… #43

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
name: tests (py${{ matrix.python-version }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: Install (core + test)
run: |
python -m pip install --upgrade pip
pip install -e ".[test]"
- name: Run tests
run: pytest -q
test-diffrax:
name: tests + diffrax backend
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
cache: pip
- name: Install (core + test + diffrax)
run: |
python -m pip install --upgrade pip
pip install -e ".[test,diffrax]"
- name: Run tests (exercises the optional diffrax ODE backend)
run: pytest -q