Skip to content

Commit 7537b6e

Browse files
Merge pull request #128 from benjeffery/lint-action
Add lint github action
2 parents 6fda59d + 14eaed8 commit 7537b6e

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/lint.yml

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

0 commit comments

Comments
 (0)