Skip to content

Commit 9cea73a

Browse files
committed
setup linter
1 parent f822129 commit 9cea73a

1 file changed

Lines changed: 22 additions & 0 deletions

File tree

.github/workflows/lint.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Python Lint
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
branches:
9+
- main
10+
11+
jobs:
12+
lint:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- name: Setup Python
16+
uses: actions/setup-python@v6
17+
with:
18+
python-version: '3.12'
19+
- name: Checkout repository
20+
uses: actions/checkout@v6
21+
- name: Check styling
22+
uses: psf/black@stable

0 commit comments

Comments
 (0)