Add PHP 8.4 in GitHub test workflow #85
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: Tests | |
on: [push, pull_request] | |
jobs: | |
run: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
php: ['8.1', '8.2', '8.3', '8.4'] | |
name: Testing on PHP ${{ matrix.php }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
extensions: mbstring,bcmath | |
tools: composer | |
- name: Install PHP dependencies | |
run: composer install -q | |
- name: Run phpunit | |
run: vendor/bin/phpunit | |
- name: Run phpstan | |
run: vendor/bin/phpstan analyze --no-progress --level=4 src/ | |
- name: Validate coding standards | |
run: vendor/bin/phpcs |