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 e7201c7 commit 9ca157cCopy full SHA for 9ca157c
.github/workflows/build.yml
@@ -29,6 +29,12 @@ jobs:
29
path: ~/.cache/pre-commit
30
key: pre-commit-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('.github/hooks/.pre-commit-config.yml') }}
31
32
+ - name: Cache mypy
33
+ uses: actions/cache@v3
34
+ with:
35
+ path: .mypy_cache/
36
+ key: mypy_cache-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('poetry.lock') }}
37
+
38
- name: Install dependencies
39
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
40
run: poetry install --no-interaction --no-root
0 commit comments