This commit is contained in:
Alexander Myasoedov
2025-11-30 18:41:00 +02:00
parent a8b5876883
commit 7a9c884333
+7 -1
View File
@@ -1,5 +1,9 @@
name: Pre-Commit Checks
env:
POETRY_VERSION: "1.8.5"
on:
push:
branches: [main]
@@ -15,7 +19,9 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install poetry
run: pipx install poetry==$POETRY_VERSION
- name: Install pre-commit
run: pip install pre-commit==4.5.0
run: poetry install
- name: Run pre-commit
run: pre-commit run --all-files