Skip to content

Enable "nitpicky" mode on Sphinx #709

Enable "nitpicky" mode on Sphinx

Enable "nitpicky" mode on Sphinx #709

Workflow file for this run

name: Test
on:
push:
branches:
- "master"
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
tests:
name: Python ${{ matrix.python-version }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "pypy-3.9"
- "pypy-3.10"
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: Install dependencies
run: python -m pip install tox-gh-actions
- name: Run tests
run: tox
env:
DATABASE_TYPE: ${{ matrix.database-type }}