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 964a5e7 commit 44e0bdeCopy full SHA for 44e0bde
1 file changed
.github/workflows/lint.yml
@@ -21,6 +21,15 @@ jobs:
21
- name: Install the project
22
run: uv sync --locked --extra lint --extra test
23
24
+ - name: Cache mypy cache
25
+ uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.1
26
+ with:
27
+ path: .mypy_cache
28
+ key: mypy-${{ runner.os }}
29
+ retention-days: 30
30
+ restore-keys: |
31
+ mypy-${{ runner.os }}
32
+
33
- name: Lint
34
run: |
35
uv run ruff format --check src tests eval
0 commit comments