Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
solnic committed Sep 18, 2024
1 parent bfe0794 commit 0b45e48
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,10 @@ jobs:

- name: Install and compile Mix dependencies
if: steps.mix-deps-cache.outputs.cache-hit != 'true'
run: mix do deps.get --check-locked, deps.compile
run: |
mix do deps.get --check-locked, deps.compile
cd test_integrations/phoenix_app
mix do deps.get --check-locked, deps.compile
- name: Save Mix dependencies cache
uses: actions/cache/save@v4
Expand All @@ -69,6 +72,8 @@ jobs:
path: |
_build
deps
test_integrations/phoenix_app/_build
test_integrations/phoenix_app/deps
key: |
${{ steps.mix-deps-cache.outputs.cache-primary-key }}
Expand Down

0 comments on commit 0b45e48

Please sign in to comment.