Skip to content

Lint sources

Lint sources #3107

Workflow file for this run

name: Lint sources
run-name: Lint sources
on:
push:
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up Docker buildx
uses: docker/setup-buildx-action@v3
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: 3.13
cache: 'pip'
- name: Lint sources
uses: pre-commit/action@v3.0.1
with:
extra_args: --all-files --show-diff-on-failure