Skip to content

Merge pull request #62 from PrestaShop/dependabot/composer/symfony/va… #145

Merge pull request #62 from PrestaShop/dependabot/composer/symfony/va…

Merge pull request #62 from PrestaShop/dependabot/composer/symfony/va… #145

Workflow file for this run

name: PHP
on: [push, pull_request]
jobs:
php-cs-fixer:
permissions:
contents: read # for actions/checkout to fetch code
name: PHP CS Fixer
runs-on: ubuntu-latest
steps:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.1
extensions: mbstring, intl, gd, xml, dom, json, fileinfo, curl, zip, iconv
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/checkout@v3
- name: Get Composer Cache Directory
id: composer-cache
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
- name: Cache Composer Directory
uses: actions/cache@v3
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: ${{ runner.os }}-composer-
- name: Validate composer config
run: composer validate --strict
- name: Composer Install
run: composer install --ansi --prefer-dist --no-interaction --no-progress
- name: Run PHPCSFixer
run: ./vendor/bin/php-cs-fixer fix --dry-run --diff
- name: Run ergebnis/composer-normalize
run: composer normalize --dry-run --no-check-lock
php-checking:
name: Run php checking
runs-on: ubuntu-latest
strategy:
matrix:
php: [ '8.1', '8.2']
fail-fast: false
steps:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
- uses: actions/checkout@v2
- name: Get Composer Cache Directory
id: composer-cache
run: |
echo "::set-output name=dir::$(composer config cache-files-dir)"
- name: Cache Composer Directory
uses: actions/cache@v2
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: |
${{ runner.os }}-composer-
- name: Composer Install
run: composer install --ansi --prefer-dist --no-interaction --no-progress
- name: Run all checking
run: composer github-ci