We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6cc11a8 commit 801175dCopy full SHA for 801175d
.github/workflows/ci.yml
@@ -42,13 +42,12 @@ jobs:
42
43
- name: Type check with mypy
44
run: |
45
- mypy .--ignore-missing-imports --exclude "visualization/|utils/jit_ops.py"
+ # Fixed the spacing after the dot and combined into one robust check
46
+ mypy . --ignore-missing-imports --exclude "visualization/|utils/jit_ops.py"
47
48
- name: Run tests with pytest
49
run: pytest || echo "No tests found yet, skipping..."
50
- - name: Run Mypy
51
- run: mypy .
52
-
53
- name: Debug Path
+ if: always()
54
run: ls -R
0 commit comments