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 e78c299 commit a2b47c7Copy full SHA for a2b47c7
.github/workflows/ci.yml
@@ -179,6 +179,15 @@ jobs:
179
${{ runner.os }}-pip-
180
${{ runner.os }}-
181
182
+ - name: Cache tox environments
183
+ uses: actions/cache@v4
184
+ with:
185
+ path: .tox
186
+ key: ${{ runner.os }}-tox-${{ matrix.toxenv }}-${{ hashFiles('requirements.d/development.txt', 'pyproject.toml') }}
187
+ restore-keys: |
188
+ ${{ runner.os }}-tox-${{ matrix.toxenv }}-
189
+ ${{ runner.os }}-tox-
190
+
191
- name: Install Linux packages
192
if: ${{ runner.os == 'Linux' }}
193
run: |
0 commit comments