52 extend GitHub workflow for coding standards in ciyaml #41
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: Continuous Integration | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
coding_standards: | |
name: Coding Standards | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
php-version: [8.1, 8.2, 8.3] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup PHP Environment | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-version }} | |
- name: Install dependencies | |
run: composer install --prefer-dist | |
- name: Run code quality | |
run: composer code-quality |