Skip to content

Bump sphinx from 7.0.1 to 7.1.1 #656

Bump sphinx from 7.0.1 to 7.1.1

Bump sphinx from 7.0.1 to 7.1.1 #656

Workflow file for this run

name: Build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python: ["3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@master
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python }}
- name: Install
run: make deps
- name: Test
run: make clean && make test