Merge pull request #274 from mwarzybok-sumoheavy/feature/SP-581 #245
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: Test | |
on: [push, pull_request] | |
jobs: | |
phpunit9: | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
php-version: ['8.0'] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: php-actions/composer@v5 | |
with: | |
php_version: ${{ matrix.php-version }} | |
args: --ignore-platform-reqs | |
- uses: php-actions/phpunit@v3 | |
with: | |
configuration: phpunit.xml | |
php_version: ${{ matrix.php-version }} | |
php_extensions: bcmath gmp xdebug | |
testsuite: Unit | |
version: 9 | |
env: | |
XDEBUG_MODE: coverage | |
phpunit10: | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
php-version: ['8.1', '8.2'] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: php-actions/composer@v5 | |
with: | |
php_version: ${{ matrix.php-version }} | |
args: --ignore-platform-reqs | |
- uses: php-actions/phpunit@v3 | |
with: | |
configuration: phpunit.xml | |
php_version: ${{ matrix.php-version }} | |
php_extensions: bcmath gmp xdebug | |
testsuite: Unit | |
version: 10 | |
env: | |
XDEBUG_MODE: coverage | |
phpcs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: php-actions/composer@v5 | |
with: | |
php_version: 8.1 | |
php_extensions: bcmath gmp xdebug | |
- name: Install PHP_CodeSniffer | |
run: | | |
curl -OL https://squizlabs.github.io/PHP_CodeSniffer/phpcs.phar | |
php phpcs.phar src --standard=ruleset.xml |