Merge pull request #169 from voku/generics #198
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: UnitTesting | |
on: [push] | |
jobs: | |
tests: | |
name: "Tests" | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
php-version: | |
- "8.0" | |
- "8.1" | |
- "8.2" | |
steps: | |
- name: "Install PHP" | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: "${{ matrix.php-version }}" | |
coverage: xdebug3 | |
- name: "Checkout" | |
uses: actions/checkout@v2 | |
- name: "Install dependencies" | |
run: composer install --prefer-dist --no-progress | |
- name: "Check Code Style" | |
run: composer phpcs-dry | |
env: | |
PHP_CS_FIXER_IGNORE_ENV: 1 | |
- name: "Run PHP Static Analysis Tool" | |
run: vendor/bin/phpstan | |
- name: "Run test suite" | |
run: vendor/bin/phpunit --coverage-clover=coverage.xml | |
- name: "Run mutation tests" | |
run: vendor/bin/infection --min-covered-msi=98 --min-msi=98 |