Skip to content

Linearisation

Linearisation #27

Workflow file for this run

name: Python Tests
on: [pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.12'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -e . # Install gdrift package in editable mode
- name: Run tests
run: pytest --maxfail=5 --disable-warnings