Skip to content

Update pre-commit hook astral-sh/ruff-pre-commit to v0.9.2 #794

Update pre-commit hook astral-sh/ruff-pre-commit to v0.9.2

Update pre-commit hook astral-sh/ruff-pre-commit to v0.9.2 #794

Workflow file for this run

name: Linters
on:
- push
- pull_request
jobs:
pre-commit-hooks:
runs-on: ubuntu-latest
strategy:
matrix:
hook_id:
- "trailing-whitespace"
- "end-of-file-fixer"
- "check-yaml"
- "debug-statements"
- "ruff"
- "pyupgrade"
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- uses: pre-commit/[email protected]
with:
extra_args: ${{ matrix.hook_id }} --all-files