We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3afbdf9 commit e77a601Copy full SHA for e77a601
.github/workflows/main.yml
@@ -60,7 +60,11 @@ jobs:
60
run: |
61
mix deps.get --check-locked
62
cd test_integrations/phoenix_app
63
- mix deps.get
+ if [ ${{ matrix.lint }} == 'true' ]; then
64
+ mix deps.get --check-locked
65
+ else
66
+ mix deps.get
67
+ fi
68
69
# We need to manually restore and then save, so that we can save the "_build" directory
70
# *without* the Elixir compiled code in it.
0 commit comments