Skip to content

build(deps): update sphinx-issues requirement from ^3.0.1 to ^5.0.1 (… #57

build(deps): update sphinx-issues requirement from ^3.0.1 to ^5.0.1 (…

build(deps): update sphinx-issues requirement from ^3.0.1 to ^5.0.1 (… #57

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@v6
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