Skip to content

Update Sphinx config and fix readthedocs build #17

Update Sphinx config and fix readthedocs build

Update Sphinx config and fix readthedocs build #17

Workflow file for this run

name: CI
on:
push:
branches: [master]
tags: ["*"]
pull_request:
jobs:
test:
strategy:
fail-fast: false
matrix:
python: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14.0-alpha.1"]
toxenv: [py]
include:
- python: "3.13"
toxenv: flake8
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python }}
- run: python -m pip install --upgrade pip wheel setuptools
- run: python -m pip install --upgrade tox poetry
- run: tox -e ${{ matrix.toxenv }}
all-tests-succeeded:
# https://github.community/t/is-it-possible-to-require-all-github-actions-tasks-to-pass-without-enumerating-them/117957/4?u=graingert
runs-on: ubuntu-24.04
needs: [test]
steps:
- name: All tests succeeded
run: echo "🎉"