Support PHP 8.4 #24
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: Run tests | |
| on: | |
| push: | |
| branches: | |
| # Only mainline branches, features etc are covered on the pull_request trigger | |
| - '*.x' | |
| pull_request: | |
| jobs: | |
| run-tests: | |
| runs-on: ubuntu-latest | |
| name: Run tests | |
| steps: | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: 8.4 | |
| tools: composer:v2 | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| show-progress: false | |
| - name: Composer install | |
| uses: ingenerator/github-composite-actions/cached-composer-install@v1 | |
| - name: Run unit tests | |
| run: | | |
| vendor/bin/phpunit --testsuite unit | |
| - name: Run integration tests | |
| run: | | |
| vendor/bin/phpunit --testsuite integration | |
| - name: Run blackbox tests | |
| run: test/run-blackbox-tests.sh |