Bump symfony/http-foundation from 7.1.7 to 7.1.8 #2563
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: PHP Code Style | |
on: pull_request | |
jobs: | |
PHP-Code-Sniffer: | |
runs-on: "ubuntu-latest" | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install PHP with extensions | |
uses: shivammathur/setup-php@master | |
with: | |
tools: composer:v2 | |
php-version: ${{ matrix.php-version }} | |
extensions: "json, mbstring, mongodb, pdo" | |
- name: Get Composer Cache Directory | |
id: composer-cache | |
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT | |
- name: Cache Composer | |
uses: actions/cache@v4 | |
with: | |
path: ${{ steps.composer-cache.outputs.dir }} | |
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} | |
restore-keys: | | |
${{ runner.os }}-composer- | |
- name: Install Composer dependencies and app configuration | |
run: composer install --no-progress --no-interaction | |
- name: Run PHP_code_sniffer | |
run: vendor/bin/phpcs | |
PHP-CS-Fixer: | |
runs-on: "ubuntu-latest" | |
strategy: | |
matrix: | |
php-version: | |
- "8.3" | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install PHP with extensions | |
uses: shivammathur/setup-php@master | |
with: | |
php-version: ${{ matrix.php-version }} | |
coverage: none | |
extensions: "json, mbstring, mongodb, pdo" | |
- name: Install PHP CS Fixer | |
run: COMPOSER=.github/workflows/composer.php-cs-fixer.json composer install --no-interaction --no-progress | |
- name: Run php-cs-fixer | |
run: vendor/bin/php-cs-fixer fix --dry-run --config=./php_cs.php -v --using-cache=no --diff --ansi |