Skip to content

Commit 87945ae

Browse files
Added pre-commit to the workflow.
Signed-off-by: Leander Stephen D'Souza <[email protected]>
1 parent 59c2e40 commit 87945ae

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/lint.yml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Lint
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
pre-commit:
7+
name: Pre-commit
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Checkout
11+
uses: actions/checkout@v4
12+
13+
- name: Set up Python
14+
uses: actions/setup-python@v5
15+
16+
- name: Run pre-commit
17+
uses: pre-commit/[email protected]

0 commit comments

Comments
 (0)