Skip to content

build(deps): update sphinx-rtd-theme requirement from ^2.0.0 to ^3.0.2 #40

build(deps): update sphinx-rtd-theme requirement from ^2.0.0 to ^3.0.2

build(deps): update sphinx-rtd-theme requirement from ^2.0.0 to ^3.0.2 #40

Workflow file for this run

name: Style Check
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
workflow_dispatch:
jobs:
style:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install Poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
echo "$HOME/.local/bin" >> $GITHUB_PATH
- name: Install dependencies
run: |
poetry install
- name: Run black
run: |
poetry run black --check --diff src tests
- name: Run isort
run: |
poetry run isort --check-only --diff src tests
- name: Run ruff
run: |
poetry run ruff check src tests