Skip to content

Declare as Sphinx parallel safe #13

Declare as Sphinx parallel safe

Declare as Sphinx parallel safe #13

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11']
steps:
- name: Checkout the repository
uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install test dependencies
run: python -m pip install -r tests/requirements.txt
- name: Run tests
run: make test