We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d103737 commit 6de49c7Copy full SHA for 6de49c7
1 file changed
.github/workflows/ci.yml
@@ -81,6 +81,20 @@ jobs:
81
- name: Run tests
82
run: mix test --exclude ml
83
84
+ - name: Restore model cache
85
+ if: matrix.lint
86
+ uses: actions/cache@v5
87
+ with:
88
+ path: |
89
+ ~/.cache/image_vision
90
+ ~/.cache/bumblebee
91
+ key: models-v1-${{ hashFiles('lib/detection.ex', 'lib/segmentation.ex', 'lib/classification.ex') }}
92
+
93
+ - name: Run ML tests
94
95
+ run: mix test --only ml
96
+ timeout-minutes: 30
97
98
- name: Verify hex package builds
99
if: matrix.lint
100
run: mix hex.build
0 commit comments