File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -55,14 +55,18 @@ jobs:
55
55
key : |
56
56
${{ runner.os }}-${{ matrix.otp }}-${{ matrix.elixir }}-mix-deps-${{ hashFiles('**/mix.lock') }}
57
57
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
+
58
65
- name : Download Mix dependencies
59
66
if : steps.mix-downloaded-deps-cache.outputs.cache-hit != 'true'
60
67
run : |
61
68
mix deps.get --check-locked
62
69
cd test_integrations/phoenix_app
63
- if [ "${{ matrix.elixir }}" < "1.16" ]; then
64
- mix deps.unlock phoenix_live_view
65
- fi
66
70
if [ ${{ matrix.lint }} == 'true' ]; then
67
71
mix deps.get --check-locked
68
72
else
You can’t perform that action at this time.
0 commit comments