Adding JsonConverter benchmark #949
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: build | |
on: | |
push: ~ | |
pull_request: ~ | |
jobs: | |
linux_tests: | |
name: PHP on ${{ matrix.php }} - ${{ matrix.stability }} - ${{ matrix.composer-flags }} | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
php: ['8.1', '8.2', '8.3'] | |
stability: [prefer-lowest, prefer-stable] | |
include: | |
- php: '8.4' | |
flags: "--ignore-platform-req=php" | |
phpunit-flags: '--no-coverage' | |
stability: prefer-stable | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
coverage: xdebug | |
tools: composer:v2 | |
- name: Check PHP Version | |
run: php -v | |
- name: Validate composer files | |
run: composer validate --strict | |
- name: Get Composer Cache Directory | |
id: composer-cache | |
run: | | |
echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT | |
- uses: actions/cache@v3 | |
with: | |
path: ${{ steps.composer-cache.outputs.dir }} | |
key: ${{ runner.os }}-composer-${{ matrix.stability }}-${{ matrix.flags }}-${{ hashFiles('**/composer.lock') }} | |
restore-keys: | | |
${{ runner.os }}-composer-${{ matrix.stability }}-${{ matrix.flags }}- | |
${{ runner.os }}-composer- | |
- name: Install dependencies | |
run: composer update --${{ matrix.stability }} --prefer-dist --no-interaction --no-progress ${{ matrix.flags }} | |
- name: Run Unit tests with coverage | |
run: composer phpunit -- ${{ matrix.phpunit-flags }} | |
if: ${{ matrix.php == '8.3' || matrix.php == '8.2' || matrix.php == '8.1'}} | |
- name: Run Unit tests without coverage | |
run: composer phpunit:min | |
if: ${{ matrix.php == '8.4'}} | |
- name: Run static analysis | |
run: composer phpstan | |
if: ${{ matrix.php == '8.3' && matrix.stability == 'prefer-stable'}} | |
- name: Run Coding style rules | |
run: composer phpcs:fix | |
if: ${{ matrix.php == '8.3' && matrix.stability == 'prefer-stable'}} |