We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a7192e3 commit 8a8f9efCopy full SHA for 8a8f9ef
1 file changed
.github/workflows/ci.yaml
@@ -79,13 +79,17 @@ jobs:
79
python -c 'import xarray_array_testing'
80
81
- name: Restore cached hypothesis directory
82
- uses: actions/cache@v4
+ uses: actions/cache/restore@v4
83
with:
84
path: .hypothesis/
85
key: cache-hypothesis
86
- enableCrossOsArchive: true
87
- save-always: true
88
89
- name: Run tests
90
run: |
91
python -m pytest --cov=xarray_array_testing
+
+ - name: Cache hypothesis directory
92
+ uses: actions/cache/save@v4
93
+ with:
94
+ path: .hypothesis/
95
+ key: cache-hypothesis
0 commit comments