Skip to content

---

--- #1021

Workflow file for this run

name: Pre-commit
on:
push:
branches:
jobs:
pre-commit:
name: Check hooks
runs-on: ubuntu-24.04
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install poetry
run: pipx install poetry
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
cache: poetry
- name: Install Python dependencies
run: poetry install
- name: Run hooks
run: poetry run pre-commit run -a