Skip to content

feat: add rodas3d solver (no dense output) #164

feat: add rodas3d solver (no dense output)

feat: add rodas3d solver (no dense output) #164

Workflow file for this run

# This workflow will install Python dependencies (if not cached), run tests and lint with a variety of Python versions
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Python package
on: [push]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ windows-latest ]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.11'
cache: 'pip' # caching pip dependencies
- run: |
pip install -r requirements.txt
cd docs/
pip install -r requirements.txt
cd ..
- run: | # run both independent pytest and doctest
pytest -vv