Combine PHP compatibility checks of contrib modules and themes into single phpcs run

This commit is contained in:
wotnak 2023-12-28 19:27:15 +01:00
parent dfc25b5865
commit 76aeedc3b1
No known key found for this signature in database
GPG Key ID: B00835978B0C9B6B
1 changed files with 1 additions and 2 deletions

View File

@ -77,8 +77,7 @@ jobs:
run: docker run farmos/farmos:3.x-dev phpstan analyze --memory-limit 1G /opt/drupal/web/profiles/farm
- name: Check PHP compatibility of contrib modules and themes (ignore warnings).
run: |
docker run farmos/farmos:3.x-dev phpcs --parallel=$(nproc) --standard=PHPCompatibility --runtime-set testVersion 8.2- --warning-severity=0 /opt/drupal/web/modules
docker run farmos/farmos:3.x-dev phpcs --parallel=$(nproc) --standard=PHPCompatibility --runtime-set testVersion 8.2- --warning-severity=0 /opt/drupal/web/themes
docker run farmos/farmos:3.x-dev phpcs --parallel=$(nproc) --standard=PHPCompatibility --runtime-set testVersion 8.2- --warning-severity=0 /opt/drupal/web/modules /opt/drupal/web/themes
test:
name: Run PHPUnit tests
runs-on: ubuntu-latest