preventively support PHP 8.3 #9
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
on: push | |
jobs: | |
run: | |
name: Continuous Integration on PHP ${{ matrix.php-version }} | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
php-version: ['8.2', '8.3'] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 2 | |
- uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-version }} | |
- run: composer install | |
- run: php vendor/bin/php-cs-fixer fix --dry-run -v | |
- run: composer test | |
- if: ${{ always() && matrix.php-version == '8.2' }} | |
run: php vendor/bin/ocular code-coverage:upload --format=php-clover build/coverage.xml |