Skip to content

Merge pull request #274 from mingtsay/master #54

Merge pull request #274 from mingtsay/master

Merge pull request #274 from mingtsay/master #54

Workflow file for this run

name: Tests
on: ['push', 'pull_request']
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
php: ['7.2', '7.3', '7.4', '8.0', '8.1', '8.2']
name: PHP ${{ matrix.php }}
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
tools: composer:v2
coverage: xdebug
- name: Setup Problem Matches
run: |
echo "::add-matcher::${{ runner.tool_cache }}/php.json"
echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
- name: Install PHP 7 dependencies
run: composer update --no-interaction --no-progress
- name: Tests
run: TERM=xterm-256color ./vendor/bin/phpunit --coverage-clover ./build/logs/clover.xml
- uses: codecov/codecov-action@v1