CI and PHP 8.5 fixes #53
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: test | |
| on: push | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| php: [8.1, 8.2, 8.3, 8.4, 8.5] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: php | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php }} | |
| - name: composer | |
| run: composer update | |
| - name: phpstan | |
| run: vendor/bin/phpstan analyse -l 8 src tests | |
| - name: test | |
| run: | | |
| mkdir -p build/logs | |
| XDEBUG_MODE=coverage vendor/bin/phpunit --display-deprecations --display-phpunit-deprecations --display-notices --display-warnings | |
| - name: coveralls | |
| if: ${{ matrix.php == 8.5 }} | |
| run: | | |
| export COVERALLS_RUN_LOCALLY=1 | |
| export COVERALLS_REPO_TOKEN=${{ secrets.coverallsToken }} | |
| rm -fR composer.json composer.lock vendor | |
| composer require php-coveralls/php-coveralls | |
| php vendor/bin/php-coveralls -v |