Skip to content

Connect with readthedocs #15

Connect with readthedocs

Connect with readthedocs #15

Workflow file for this run

name: ci
on: [push]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python-version: ['3.8', '3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install package and dependencies
run: |
python3 -m pip install --upgrade pip setuptools wheel
pip install .
- name: Build documentation and examples
run: |
pip install -r docs/requirements.txt
sphinx-build -b html docs docs/_build
sphinx-build -b doctest docs docs/_build
- name: Lint with Ruff
uses: chartboost/ruff-action@v1
- name: Run tests and generate coverage data
run: |
python3 -m pip install coverage pytest
coverage run -m pytest