Skip to content

After freeze into main (#741) #309

After freeze into main (#741)

After freeze into main (#741) #309

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"