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 e9ae754 commit 859d499Copy full SHA for 859d499
.gitlab-ci.yml
@@ -21,7 +21,10 @@ analyse:
21
before_script:
22
- php -v
23
- composer --version
24
- - cd $CI_PROJECT_DIR
+ - if [ ! -d "$CI_PROJECT_DIR/.git" ]; then
25
+ git clone "$CI_REPOSITORY_URL" "$CI_PROJECT_DIR";
26
+ fi
27
+ - cd "$CI_PROJECT_DIR"
28
script:
29
- composer install --prefer-dist --no-progress
30
- composer a
0 commit comments