Skip to content

fix[cartesian]: Fix minimal k-range computation #78

fix[cartesian]: Fix minimal k-range computation

fix[cartesian]: Fix minimal k-range computation #78

Workflow file for this run

name: "Test examples in documentation"
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test-notebooks:
strategy:
matrix:
os: ["ubuntu-latest"]
python-version: ["3.10", "3.11"]
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Install C++ libraries
if: ${{ matrix.os == 'macos-latest' }}
shell: bash
run: brew install boost
- name: Install C++ libraries
if: ${{ matrix.os == 'ubuntu-latest' }}
shell: bash
run: sudo apt install libboost-dev
- name: Install uv and set the python version
uses: astral-sh/setup-uv@v5
with:
enable-cache: true
cache-dependency-glob: "uv.lock"
python-version: ${{ matrix.python-version }}
- name: Run 'docs' nox session
env:
NUM_PROCESSES: auto
shell: bash
run: uv run nox -s 'test_examples-${{ matrix.python-version }}'