Skip to content
This repository was archived by the owner on Aug 20, 2025. It is now read-only.

Commit 11edc62

Browse files
committed
Add GitHub workflow to run pre-commit on pushes/PRs
1 parent b1f941d commit 11edc62

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/pre-commit.yaml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: pre-commit
2+
3+
on:
4+
pull_request:
5+
push:
6+
branches: [main]
7+
8+
jobs:
9+
pre-commit:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v3
13+
- uses: actions/setup-python@v3
14+
- uses: pre-commit/[email protected]

0 commit comments

Comments
 (0)