Skip to content

Commit 08cec4c

Browse files
committed
Restore --check-locked but for 1.17+ only
1 parent 2f3289a commit 08cec4c

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/main.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,11 @@ jobs:
6060
run: |
6161
mix deps.get --check-locked
6262
cd test_integrations/phoenix_app
63-
mix deps.get
63+
if [ ${{ matrix.lint }} == 'true' ]; then
64+
mix deps.get --check-locked
65+
else
66+
mix deps.get
67+
fi
6468
6569
# We need to manually restore and then save, so that we can save the "_build" directory
6670
# *without* the Elixir compiled code in it.

0 commit comments

Comments
 (0)