Type: nullable arrays are not coerced from null to empty array #338
Workflow file for this run
This file contains hidden or 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: Tests | |
| on: [push, pull_request] | |
| jobs: | |
| tests: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| php: ['8.1', '8.2', '8.3', '8.4', '8.5'] | |
| fail-fast: false | |
| name: PHP ${{ matrix.php }} tests | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php }} | |
| coverage: none | |
| - run: composer install --no-progress --prefer-dist | |
| - run: composer tester | |
| - if: failure() | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: output-${{ matrix.php }} | |
| path: tests/**/output | |
| lowest_dependencies: | |
| name: Lowest Dependencies | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: 8.1 | |
| coverage: none | |
| - run: composer update --no-progress --prefer-dist --prefer-lowest --prefer-stable | |
| - run: composer tester | |
| code_coverage: | |
| name: Code Coverage | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: 8.1 | |
| coverage: none | |
| - run: composer install --no-progress --prefer-dist | |
| - run: composer tester -- -p phpdbg --coverage ./coverage.xml --coverage-src ./src | |
| continue-on-error: true | |
| - uses: coverallsapp/github-action@v2 | |
| with: | |
| file: coverage.xml | |
| format: clover |