Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
sukhwinder33445 committed Aug 23, 2023
1 parent 33823ce commit b55f316
Showing 1 changed file with 15 additions and 6 deletions.
21 changes: 15 additions & 6 deletions .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,21 @@ jobs:
tools: phpcs

- name: Setup dependencies
run: composer require -n --no-progress overtrue/phplint
&& git clone --single-branch -b master https://github.com/Icinga/icingaweb2.git vendor/icingaweb2
&& git clone --single-branch -b master https://github.com/Icinga/icingaweb2-module-reporting.git vendor/reporting
&& git clone --single-branch -b main https://github.com/Icinga/icingaweb2-module-x509.git vendor/x509
&& git clone --single-branch -b snapshot/nightly https://github.com/Icinga/icinga-php-library.git vendor/icinga-php-library
&& git clone --single-branch -b snapshot/nightly https://github.com/Icinga/icinga-php-thirdparty.git vendor/icinga-php-thirdparty
run: |
composer require -n --no-progress overtrue/phplint
git clone --depth 1 -b add-phpstan https://github.com/Icinga/icingaweb2.git vendor/icingaweb2
git clone --depth 1 https://github.com/Icinga/icingaweb2-module-reporting.git vendor/reporting
git clone --depth 1 https://github.com/Icinga/icingaweb2-module-x509.git vendor/x509
git clone --depth 1 -b snapshot/nightly https://github.com/Icinga/icinga-php-library.git vendor/icinga-php-library
git clone --depth 1 -b snapshot/nightly https://github.com/Icinga/icinga-php-thirdparty.git vendor/icinga-php-thirdparty
git clone --depth 1 -b phpstan https://github.com/Icinga/ipl-web.git /vendor/ipl-web \
git clone --depth 1 -b phpstan https://github.com/Icinga/ipl-html.git /vendor/ipl-html \
git clone --depth 1 -b phpstan https://github.com/Icinga/ipl-i18n.git /vendor/ipl-i18n \
git clone --depth 1 -b phpstan https://github.com/Icinga/ipl-orm.git /vendor/ipl-orm \
git clone --depth 1 -b phpstan https://github.com/Icinga/ipl-sql.git /vendor/ipl-sql \
git clone --depth 1 -b phpstan https://github.com/Icinga/ipl-validator.git /vendor/ipl-validator \
git clone --depth 1 -b phpstan https://github.com/Icinga/ipl-stdlib.git /vendor/ipl-stdlib \
git clone --depth 1 -b phpstan https://github.com/Icinga/ipl-scheduler.git /vendor/ipl-scheduler \
- name: PHP Lint
if: success() || matrix.allow_failure
Expand Down

0 comments on commit b55f316

Please sign in to comment.