Skip to content

to subset spare matrix, now PandasSeries boolean needs to be converte… #110

to subset spare matrix, now PandasSeries boolean needs to be converte…

to subset spare matrix, now PandasSeries boolean needs to be converte… #110

Workflow file for this run

name: CI
on: [pull_request, push]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
max-parallel: 2
matrix:
os: [ubuntu-latest]
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements.txt
- name: Install package
run: |
pip install .
- name: Check that documentation builds
run: |
sudo apt-get update
sudo apt-get install pandoc
python -m pip install "sphinx<8.2.0,>=7.2.6" "sphinx_rtd_theme>=1.3.0" "mock" "nbsphinx>=0.9.3" "myst-nb"
cd docs; make clean; make html; cd ..;
- name: Run tests
run: |
pytest tests