We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fada7e3 commit a77fa0dCopy full SHA for a77fa0d
.github/workflows/lint.yml
@@ -0,0 +1,29 @@
1
+name: Lint
2
+
3
+on:
4
+ push:
5
+ branches: [main]
6
+ tags: ["*"]
7
+ pull_request:
8
9
+jobs:
10
+ ruff:
11
+ name: Ruff Check
12
+ runs-on: ubuntu-latest
13
+ container:
14
+ image: python:3.11.9-alpine
15
+ steps:
16
+ - uses: actions/checkout@v4
17
18
+ - name: Install Ruff 0.11.11
19
+ run: pip install ruff==0.11.11
20
21
+ - name: Run Ruff
22
+ run: ruff check .
23
24
+ trailing-whitespace:
25
+ name: Find Trailing Whitespace
26
27
28
29
+ - uses: harupy/find-trailing-whitespace@master
0 commit comments