Skip to content

PES-2552: Warnings in checkout #214

PES-2552: Warnings in checkout

PES-2552: Warnings in checkout #214

Workflow file for this run

name: phpcbf check
on:
push:
branches: [ main ]
pull_request:
jobs:
phpcbf-check:
runs-on: ubuntu-24.04
strategy:
matrix:
php-version: [ '8.1' ]
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
extensions: mbstring, intl
coverage: yes
- name: php version
run: php -v
- name: Install Composer dependencies
run: composer install
- name: Run phpcbf
run: bash "${GITHUB_WORKSPACE}/.github/run-phpcbf.sh"