Skip to content

cmake: Bump minimum required version to 3.20 #211

cmake: Bump minimum required version to 3.20

cmake: Bump minimum required version to 3.20 #211

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v3
- name: Install apt dependencies
run: sudo apt-get install -y graphviz gfortran cmake libblas-dev liblapack-dev ninja-build
- name: Setup poetry
run: curl -sSL https://install.python-poetry.org | python3 -
- name: Install dependencies
run: /home/runner/.local/bin/poetry install
- name: Lint with black
run: /home/runner/.local/bin/poetry run black --check .
- name: Run tests
run: /home/runner/.local/bin/poetry run pytest --cov
- name: Run notebook tests
run: /home/runner/.local/bin/poetry run pytest --nbmake notebook