Skip to content

ci: needs lapack

ci: needs lapack #29

Workflow file for this run

name: ci_python
on:
push:
paths:
- "**.f90"
- "**.F90"
- "**.py"
- ".github/workflows/ci_python.yml"
jobs:
linux:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-python@v5
with:
python-version: '3.13'
- uses: actions/checkout@v4
- run: pip install .[tests,lint]
- run: flake8
- run: mypy
- run: cmake -Bbuild -Dpython=yes
- run: cmake --build build --parallel
- run: pytest