Skip to content

Bump coverage from 7.6.1 to 7.6.8 #108

Bump coverage from 7.6.1 to 7.6.8

Bump coverage from 7.6.1 to 7.6.8 #108

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
name: Doctest
on:
pull_request:
branches: ["main"]
jobs:
doctest:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r docs/requirements.txt
python -m pip install -r requirements.txt
- name: Sphinx doctest
working-directory: ./docs
run: |
make doctest
- name: Readme test
run: |
python -m pytest --markdown-docs README.md