Skip to content

Commit

Permalink
Fix dirs
Browse files Browse the repository at this point in the history
  • Loading branch information
reachfh committed Aug 12, 2024
1 parent ab7311d commit c1df6ea
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,25 +67,23 @@ jobs:
run: rebar3 ct

- name: Cache deps
working-directory: mix_tests
id: cache-deps
uses: actions/cache@v4
id: cache-deps
env:
cache-name: cache-elixir-deps
with:
path: app/deps
path: mix_tests/deps
key: ${{ runner.os }}-${{matrix.otp}}-${{matrix.elixir}}-mix-${{ env.cache-name }}-${{ hashFiles('**/mix.lock') }}
restore-keys: |
${{ runner.os }}-${{matrix.otp}}-${{matrix.elixir}}-mix-${{ env.cache-name }}-
- name: Cache compiled build
working-directory: mix_tests
id: cache-build
uses: actions/cache@v4
env:
cache-name: cache-compiled-build
with:
path: app/_build
path: mix_test/_build
key: ${{ runner.os }}-${{matrix.otp}}-${{matrix.elixir}}-mix-${{ env.cache-name }}-${{ hashFiles('**/mix.lock') }}
restore-keys: |
${{ runner.os }}-${{matrix.otp}}-${{matrix.elixir}}-mix-${{ env.cache-name }}-
Expand Down

0 comments on commit c1df6ea

Please sign in to comment.