We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0c91ec5 commit b469036Copy full SHA for b469036
1 file changed
.github/workflows/linter.yaml
@@ -27,22 +27,28 @@ jobs:
27
28
- name: Run Ruff Linter
29
id: ruff-lint
30
+ uses: astral-sh/ruff-action@v3
31
continue-on-error: true
- run: uv run ruff check .
32
- - name: Run Ruff Format Check
+
33
+ - name: Run Ruff Formatter
34
id: ruff-format
35
36
- run: uv run ruff format --check .
37
+ with:
38
+ args: "format --check"
39
40
- name: Run MyPy Type Checker
41
id: mypy
42
43
run: uv run mypy src
44
45
- name: Run Pyright (Pylance equivalent)
46
id: pyright
47
48
uses: jakebailey/pyright-action@v2
49
with:
50
pylance-version: latest-release
51
52
- name: Run JSCPD for copy-paste detection
53
id: jscpd
54
0 commit comments