Skip to content

fix(deps): update dependency sphinx to v6 #674

fix(deps): update dependency sphinx to v6

fix(deps): update dependency sphinx to v6 #674

Workflow file for this run

name: run tests
on: [push]
jobs:
unit-tests:
runs-on: ubuntu-22.04
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade tox
- name: Run tests for Python ${{ matrix.python-version }} with tox
run: tox -e $(tox -l | grep "py${{ matrix.python-version }}" | paste -sd "," -)
lint:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade poetry
poetry install
- name: Run pre-commit checks
run: poetry run pre-commit run --all-files
docs:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade tox
- name: Build docs using tox
run: tox -e docs