Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,13 @@ jobs:
- uses: actions/checkout@v2
- uses: shivammathur/setup-php@v1
with:
php-version: 7.2
php-version: ${{ matrix.php }}
coverage: none # disable xdebug, pcov
# report phpunit errors into files-changed PR tab
Comment thread
staabm marked this conversation as resolved.
# https://github.com/actions/toolkit/blob/master/docs/problem-matchers.md
- name: Setup Problem Matchers for PHPUnit
run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"

- run: composer install --no-progress
- run: vendor/bin/phpunit

Expand All @@ -34,6 +39,11 @@ jobs:
with:
php-version: 7.2
coverage: none
# report phpunit errors into files-changed PR tab
# https://github.com/actions/toolkit/blob/master/docs/problem-matchers.md

- name: Setup Problem Matchers for PHPUnit
run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"

- run: composer update --no-progress --prefer-lowest
- run: vendor/bin/phpunit