Update dependency phpunit/phpunit to v12 - autoclosed #707
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: Core API | |
on: [ push, pull_request ] | |
jobs: | |
cluster-api-tests: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
php-versions: [ '8.1', '8.2', '8.3', '8.4' ] | |
name: PHP ${{ matrix.php-versions }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
repository: ${{ github.event.pull_request.head.repo.full_name }} | |
ref: ${{ github.event.pull_request.head.ref }} | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-versions }} | |
extensions: mbstring, intl | |
- name: Install Dependencies | |
run: composer install -q --no-ansi --no-interaction --no-scripts --no-suggest --no-progress | |
- name: Execute tests (Unit and Feature tests) via PHPUnit | |
run: | | |
vendor/bin/phpunit | |
- name: Execute static analysis | |
run: | | |
vendor/bin/phpstan | |
- name: Execute rector | |
run: | | |
composer rector:check | |
- name: Execute code style check | |
run: | | |
vendor/bin/ecs check |