Skip to content

Commit

Permalink
Only use --check-locked if linting in CI (#816)
Browse files Browse the repository at this point in the history
  • Loading branch information
whatyouhide authored Oct 28, 2024
1 parent 369f8e2 commit 568186c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,11 @@ jobs:
run: |
mix deps.get --check-locked
cd test_integrations/phoenix_app
mix deps.get --check-locked
if [ ${{ matrix.lint }} == 'true' ]; then
mix deps.get --check-locked
else
mix deps.get
fi
# We need to manually restore and then save, so that we can save the "_build" directory
# *without* the Elixir compiled code in it.
Expand Down

0 comments on commit 568186c

Please sign in to comment.