We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f822129 commit 9cea73aCopy full SHA for 9cea73a
1 file changed
.github/workflows/lint.yml
@@ -0,0 +1,22 @@
1
+name: Python Lint
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ pull_request:
8
9
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