Skip to content

Run python -m sphinx rather than sphinx-build (#180) #112

Run python -m sphinx rather than sphinx-build (#180)

Run python -m sphinx rather than sphinx-build (#180) #112

Workflow file for this run

name: CI
on:
pull_request:
push:
workflow_dispatch:
jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.x"
- uses: pre-commit/action@v3.0.1
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "3.13"
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "${{ matrix.python-version }}"
allow-prereleases: true
- run: pip install nox
- run: nox --session test-${{ matrix.python-version }}