Setup PHP when running coding-standards and static-analysis actions

This commit is contained in:
Chris Kankiewicz
2024-11-22 15:30:49 -07:00
parent 9f1c345ef3
commit c67b1fe1ca

View File

@@ -34,6 +34,12 @@ jobs:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.3
extensions: apcu, mbstring, memcached, redis, intl
- name: Install PHP Dependencies
run: composer install --no-interaction --no-progress --no-scripts --prefer-dist
@@ -48,6 +54,12 @@ jobs:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.3
extensions: apcu, mbstring, memcached, redis, intl
- name: Install PHP Dependencies
run: composer install --no-interaction --no-progress --no-scripts --prefer-dist