Skip to content

Commit db5b998

Browse files
committed
chore(ci): add pre-commit action
1 parent 10a9a07 commit db5b998

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

Diff for: .github/workflows/pre-commit.yml

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

0 commit comments

Comments
 (0)