Skip to content
This repository has been archived by the owner on Sep 3, 2024. It is now read-only.

Commit

Permalink
Put Bumblebee cache together with mix cache in test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
karol-t-wilk committed Mar 7, 2024
1 parent 5deb298 commit cc797db
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,12 @@ jobs:
restore-keys: |
${{ runner.os }}-mix-${{ env.elixir }}-${{ env.otp }}-
- name: Cache Bumblebee models
uses: actions/cache@v4
with:
path: ${{ env.BUMBLEBEE_CACHE_DIR }}
key: ${{ runner.os }}-bumblebee

- name: Install mix dependencies
run: mix deps.get --check-locked

Expand All @@ -64,9 +70,3 @@ jobs:

- name: Run tests
run: mix test --warnings-as-errors

- name: Cache Bumblebee models
uses: actions/cache@v4
with:
path: ${{ env.BUMBLEBEE_CACHE_DIR }}
key: ${{ runner.os }}-bumblebee

0 comments on commit cc797db

Please sign in to comment.