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 f050601 commit 30b595fCopy full SHA for 30b595f
.github/workflows/build.yaml
@@ -44,6 +44,7 @@ jobs:
44
spec: main
45
run-expensive-tests: true
46
report-coverage: true
47
+ save-cache: true
48
- python-version: '3.12'
49
conda-env: dev
50
spec: conda
@@ -104,6 +105,12 @@ jobs:
104
105
pyright
106
if: matrix.run-expensive-tests
107
- uses: actions/cache@v4
108
+ if: matrix.save-cache
109
+ with:
110
+ path: bioimageio_cache
111
+ key: "test-${{matrix.spec}}-${{ steps.get-date.outputs.date }}"
112
+ - uses: actions/cache/restore@v4
113
+ if: !matrix.save-cache
114
with:
115
path: bioimageio_cache
116
key: "test-${{matrix.spec}}-${{ steps.get-date.outputs.date }}"
0 commit comments