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:
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
You can’t perform that action at this time.
0 commit comments