Skip to content

Bump mkdocs-git-revision-date-localized-plugin from 1.4.5 to 1.5.0 #1030

Bump mkdocs-git-revision-date-localized-plugin from 1.4.5 to 1.5.0

Bump mkdocs-git-revision-date-localized-plugin from 1.4.5 to 1.5.0 #1030

Workflow file for this run

name: Check code formatting
on:
push:
branches: [main]
pull_request:
branches: [main]
schedule:
- cron: "0 13 * * 1" # run every Monday at 13:00 UTC
jobs:
format:
name: Check code formatting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.11
- name: Install uv
uses: astral-sh/setup-uv@v6
with:
enable-cache: true
- name: Sync dependencies
run: uv sync
- name: ruff check
run: |
uv run ruff check .
- name: ruff format
run: |
uv run ruff format .