Skip to content

Commit f8eead3

Browse files
ci: disable caching on Windows tests (#9318)
* ci: try skipping cache on Windows * trigger * remove trigger --------- Co-authored-by: David S. Batista <[email protected]>
1 parent 04e4701 commit f8eead3

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

.github/workflows/tests.yml

+1-7
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ jobs:
162162

163163
- uses: actions/cache/save@v4
164164
id: cache
165-
if: matrix.os != 'ubuntu-latest'
165+
if: matrix.os == 'macos-latest'
166166
with:
167167
path: ${{ steps.hatch.outputs.env }}
168168
key: ${{ runner.os }}-${{ github.sha }}
@@ -415,12 +415,6 @@ jobs:
415415
pip install hatch==${{ env.HATCH_VERSION }}
416416
echo "env=$(hatch env find test)" >> "$GITHUB_OUTPUT"
417417
418-
- uses: actions/cache/restore@v4
419-
id: cache
420-
with:
421-
path: ${{ steps.hatch.outputs.env }}
422-
key: ${{ runner.os }}-${{ github.sha }}
423-
424418
- name: Run
425419
run: hatch run test:integration-only-fast
426420

0 commit comments

Comments
 (0)