Skip to content

Commit bb2a234

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

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/pre-commit.yaml

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

0 commit comments

Comments
 (0)