Skip to content

Commit 317d119

Browse files
committed
WIP
1 parent 768ae60 commit 317d119

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/main.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,14 +55,18 @@ jobs:
5555
key: |
5656
${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-mix-deps-${{ hashFiles('**/mix.lock') }}
5757
58+
- name: Download Mix dependencies (1.13)
59+
if: steps.mix-downloaded-deps-cache.outputs.cache-hit != 'true' && ${{ matrix.elixir }} < "1.16"
60+
run: |
61+
cd test_integrations/phoenix_app
62+
mix deps.unlock phoenix_live_view
63+
mix deps.get
64+
5865
- name: Download Mix dependencies
5966
if: steps.mix-downloaded-deps-cache.outputs.cache-hit != 'true'
6067
run: |
6168
mix deps.get --check-locked
6269
cd test_integrations/phoenix_app
63-
if [ "${{ matrix.elixir }}" < "1.16" ]; then
64-
mix deps.unlock phoenix_live_view
65-
fi
6670
if [ ${{ matrix.lint }} == 'true' ]; then
6771
mix deps.get --check-locked
6872
else

0 commit comments

Comments
 (0)