Skip to content

Commit

Permalink
Run composer update on CI environments
Browse files Browse the repository at this point in the history
  • Loading branch information
natanfelles committed Dec 25, 2021
1 parent e87c045 commit 5688295
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ test:php:
- build/
- vendor/
before_script:
- composer install
- composer update
script:
- composer normalize --dry-run --indent-size=4 --indent-style=space
- vendor/bin/php-cs-fixer fix --diff --dry-run --verbose
Expand Down
2 changes: 1 addition & 1 deletion ci-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
set -e

commands=(
"composer install"
"composer update"
"composer normalize --dry-run --indent-size=4 --indent-style=space"
"vendor/bin/php-cs-fixer fix --diff --dry-run --verbose"
"vendor/bin/phpmd src xml phpmd.xml"
Expand Down

0 comments on commit 5688295

Please sign in to comment.