We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 40e438b commit db7eb13Copy full SHA for db7eb13
1 file changed
.github/workflows/_build.yaml
@@ -68,6 +68,12 @@ jobs:
68
with:
69
python-version: ${{ matrix.python }}
70
71
+ - name: Set up pre-commit cache
72
+ uses: actions/cache@v3
73
+ with:
74
+ path: ~/.cache/pre-commit
75
+ key: pre-commit|${{ matrix.os }}|${{ matrix.python }}|${{ hashFiles('.pre-commit-config.yaml') }}
76
+
77
# Using the Makefile assumes an activated virtual environment, which doesn't exist
78
# when running in an Action environment (https://github.com/actions/setup-python/issues/359).
79
# Instead we create an empty .venv folder so that the Makefile continues to function
0 commit comments