[TASK] Language checks #887
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: tests | |
on: | |
push: | |
pull_request: | |
jobs: | |
lint: | |
name: Linting | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
php: | |
- '8.2' | |
- '8.3' | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Lint PHP | |
run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -s lint | |
quality: | |
name: Quality | |
runs-on: ubuntu-latest | |
env: | |
php: '8.2' | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install testing system | |
run: Build/Scripts/runTests.sh -p ${{ env.php }} -s composerUpdate | |
- name: Composer validate | |
run: Build/Scripts/runTests.sh -p ${{ env.php }} -s composerValidate | |
# Disabled composer-normalize for now because ergebnis/composer-normalize | |
# still hard-depends on localheinz/diff, which conflicts with sebastian/diff | |
# and causes fatal errors in our CI. Re-enable once the upstream dependency | |
# situation is resolved in a newer release. | |
# - name: Composer normalize | |
# run: Build/Scripts/runTests.sh -p ${{ env.php }} -s composerNormalize -n | |
- name: CGL | |
run: Build/Scripts/runTests.sh -n -p ${{ env.php }} -s cgl -n | |
- name: Lint YAML | |
run: Build/Scripts/runTests.sh -p ${{ env.php }} -s yamlLint |