Skip to content

Commit cbfe6fa

Browse files
committed
Add GitHub Actions workflow for pre-commit hooks
GitHub: fix #1313
1 parent 8c3488e commit cbfe6fa

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/pre-commit.yaml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
---
2+
3+
"on": [pull_request, push]
4+
5+
jobs:
6+
7+
pre-commit:
8+
9+
steps:
10+
11+
# Check against the lowest supported version
12+
- uses: actions/setup-python@v5
13+
with:
14+
python-version: "3.8"
15+
16+
- uses: actions/checkout@v4
17+
18+
- uses: pre-commit/action@v3

0 commit comments

Comments
 (0)