Skip to content
This repository was archived by the owner on Aug 24, 2026. It is now read-only.

Bump the docs-dependencies group across 1 directory with 14 updates #69

Bump the docs-dependencies group across 1 directory with 14 updates

Bump the docs-dependencies group across 1 directory with 14 updates #69

Workflow file for this run

name: Python application
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
build:
timeout-minutes: 20
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up Python 3.12
uses: actions/setup-python@v6
with:
python-version: "3.12"
cache: "pip"
cache-dependency-path: |
pyproject.toml
requirements*.txt
sphinx-docs/requirements.txt
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -e ".[dev]"
python -m pip check
- name: Lint with ruff
run: |
python -m ruff check .
- name: Check formatting with ruff
run: |
python -m ruff format . --check
- name: Test with pytest
run: |
python -m pytest