Skip to content

Commit 7a9c884

Browse files
committed
fix(pc):
1 parent a8b5876 commit 7a9c884

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/pre-commit.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
name: Pre-Commit Checks
22

3+
env:
4+
POETRY_VERSION: "1.8.5"
5+
6+
37
on:
48
push:
59
branches: [main]
@@ -15,7 +19,9 @@ jobs:
1519
uses: actions/setup-python@v4
1620
with:
1721
python-version: '3.11'
22+
- name: Install poetry
23+
run: pipx install poetry==$POETRY_VERSION
1824
- name: Install pre-commit
19-
run: pip install pre-commit==4.5.0
25+
run: poetry install
2026
- name: Run pre-commit
2127
run: pre-commit run --all-files

0 commit comments

Comments
 (0)