We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aeecdf1 commit c5a3246Copy full SHA for c5a3246
.github/workflows/syntax.yml
@@ -0,0 +1,35 @@
1
+name: Linting
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ pull_request:
8
9
10
11
+jobs:
12
+ checkSyntax:
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - name: Python Setup
16
+ uses: actions/setup-python@v5
17
+ with:
18
+ python-version: "3"
19
+ architecture: x64
20
+ - name: Checkout Source
21
+ uses: actions/checkout@v4
22
+ - name: Install Dependencies
23
+ run: pip install -r requirements.txt -r requirements-dev.txt
24
+ - name: Ruff Check
25
+ run: |
26
+ ruff --version
27
+ ruff check
28
+ - name: Pyright Check
29
30
+ pyright --version
31
+ pyright
32
+ - name: Isort Check
33
34
+ isort --version
35
+ isort --check .
requirements-dev.txt
@@ -1,2 +1,3 @@
-ruff
+isort
pyright
+ruff
0 commit comments