Bump sphinx from 7.3.7 to 8.1.3 #1057
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
on: | |
push: | |
pull_request: | |
schedule: | |
- cron: 0 0 * * 0 | |
jobs: | |
tests: | |
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.repository | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- ubuntu-22.04 | |
python-version: | |
- '3.7' | |
- '3.8' | |
- '3.9' | |
- '3.10' | |
- '3.11' | |
- '3.12' | |
- '3.13' | |
- pypy-3.10 | |
include: | |
- os: ubuntu-20.04 | |
python-version: '3.5' | |
- os: ubuntu-20.04 | |
python-version: '3.6' | |
- os: windows-2022 | |
python-version: '3.12' | |
- os: macos-13 | |
python-version: '3.12' | |
- os: ubuntu-22.04 | |
python-version: 3.14-dev | |
allow-failure: true | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
env: | |
# Workaround for https://github.com/actions/setup-python/issues/866 | |
PIP_TRUSTED_HOST: pypi.python.org pypi.org files.pythonhosted.org | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install tox | |
- name: Run tests | |
run: | | |
tox -e tests | |
continue-on-error: ${{ matrix.allow-failure }} | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v4 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
flags: ${{ matrix.os }}_${{ matrix.python-version }} | |
verbose: true | |
fail_ci_if_error: true | |
continue-on-error: ${{ matrix.allow-failure }} |