Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/tests_tox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
python -m pip install tox tox-gh-actions>=2.0

- name: Load tox cache
uses: actions/cache/restore@cdf6c1fa76f9f475f3d7449005a359c84ca0f306
uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae
with:
path: .tox/
key: ${{ runner.os }}-${{ matrix.python-version }}-tox-v1-${{ hashFiles('**/pyproject.toml') }}
Expand All @@ -53,7 +53,7 @@ jobs:

- name: Save tox cache only on main
if: github.ref == 'refs/heads/main'
uses: actions/cache/save@cdf6c1fa76f9f475f3d7449005a359c84ca0f306
uses: actions/cache/save@27d5ce7f107fe9357f9df03efb73ab90386fccae
with:
path: .tox/
key: ${{ runner.os }}-${{ matrix.python-version }}-tox-v1-${{ hashFiles('**/pyproject.toml') }}
Expand Down
Loading