SP-809 Update PHP SDK v9.0.0 config generator #287
Workflow file for this run
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: | |
phpunit10: | |
runs-on: ubuntu-20.04 | |
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 | |
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 |