Merge branch '5.0.x' into bugfix_27374_add_condition_to_display_serve… #1773
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: Code validation | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: true | |
matrix: | |
php-versions: ['8.2'] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Docker build | |
run: make build | |
- name: Docker up | |
run: make up | |
- name: Wait for the environment | |
run: sleep 15 | |
- name: Docker ps | |
run: make ps | |
- name: Validate composer.json and composer.lock | |
run: make composer-validate | |
- name: Lints | |
run: | | |
make test-lint-yaml | |
make test-lint-twig | |
make test-lint-xliff | |
make test-lint-generic | |
- name: PHPCSFixer | |
run: make test-php-cs-fixer | |
- name: PHPStan | |
run: make test-php-stan | |
- name: PHPRector | |
run: make test-rector | |
- name: Test | |
run: make test | |
- name: Fixtures | |
run: make fixtures |