Skip to content

Commit

Permalink
Add missing PHP extension in Github CI.
Browse files Browse the repository at this point in the history
  • Loading branch information
drupol committed Feb 26, 2020
1 parent 6a63d5c commit 6c214fb
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
uses: shivammathur/setup-php@master
with:
php-version: ${{ matrix.php-versions }}
extensions: xdebug
extensions: xdebug,mbstring

- name: Get Composer Cache Directory
id: composer-cache
Expand All @@ -50,5 +50,12 @@ jobs:
env:
STRYKER_DASHBOARD_API_KEY: ${{ secrets.STRYKER_DASHBOARD_API_KEY }}

- name: Send PSALM data
run: vendor/bin/psalm --shepherd --stats
continue-on-error: true

- name: Scrutinizer
run: vendor/bin/ocular code-coverage:upload --format=php-clover build/logs/clover.xml
run: |
wget https://scrutinizer-ci.com/ocular.phar
php ocular.phar code-coverage:upload --format=php-clover build/logs/clover.xml
continue-on-error: true

0 comments on commit 6c214fb

Please sign in to comment.