Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasbestle committed Dec 28, 2020
1 parent 7a4b8a7 commit 3201ab6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ jobs:
run: composer install --prefer-dist

- name: Cache analysis data
id: cache
uses: actions/cache@v2
with:
path: |
Expand All @@ -104,12 +105,14 @@ jobs:
key: backend-analysis

- name: Run PHP-CS-Fixer
if: steps.cache.outcome == 'success'
env:
PHP_CS_FIXER_IGNORE_ENV: 1
run: |
php-cs-fixer fix --dry-run --format=checkstyle | cs2pr
- name: Run Psalm
if: steps.cache.outcome == 'success'
run: psalm --output-format=github

coveralls-upload:
Expand Down
2 changes: 1 addition & 1 deletion src/ComposerInstaller/CmsInstaller.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public function getInstallPath(PackageInterface $package): string
}

// if explicitly set to something invalid (e.g. `false`), install to vendor dir
if (is_string($path) !== true) {
if(is_string($path) !== true) {
return parent::getInstallPath($package);
}

Expand Down

0 comments on commit 3201ab6

Please sign in to comment.