We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent de21fb6 commit 15b8c6cCopy full SHA for 15b8c6c
.github/workflows/test-mars.yml
@@ -48,6 +48,9 @@ jobs:
48
run: ruff check mars_lib/
49
working-directory: ${{ env.working-directory }}
50
51
+ - name: Create mypy cache directory
52
+ run: mkdir -p /tmp/mypy_cache
53
+
54
- name: Type checking
- run: mypy --install-types --non-interactive mars_lib/
55
+ run: mypy --install-types --non-interactive --cache-dir /tmp/mypy_cache mars_lib/
56
0 commit comments