Merge pull request #37 from bobbrodie/2.0.x #18
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: | |
phpunit: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
php-version: ['8.1', '8.2', '8.3'] | |
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 | |
version: 10.5.20 | |
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 |