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 2edb001 commit e41122fCopy full SHA for e41122f
2 files changed
.github/workflows/static_check.yml .github/workflows/mypy.yml.github/workflows/static_check.yml renamed to .github/workflows/mypy.yml
@@ -1,4 +1,4 @@
1
-name: MyPy Type Checking and Pylint Linting
+name: MyPy Type Checking
2
3
on: [pull_request]
4
@@ -19,6 +19,4 @@ jobs:
19
20
- name: Type Check Source Code
21
run: uv run mypy src
22
-
23
- - name: Lint Source Code
24
- run: uv run pylint src
+
.github/workflows/pylint.yml
@@ -0,0 +1,21 @@
+name: Pylint Linting
+on: [pull_request]
5
+jobs:
6
+ linting:
7
+ runs-on: ubuntu-latest
8
9
+ steps:
10
+ - uses: actions/checkout@v2
11
+ with:
12
+ fetch-depth: 1
13
14
+ - name: Install uv
15
+ uses: astral-sh/setup-uv@v5
16
17
+ - name: Set up Python
18
+ run: uv sync
+ - name: Lint Source Code
+ run: uv run pylint src
0 commit comments