Skip to content

Upgrade PHP to support 8.2 and 8.3 only; Remove CaptainHook #55

Upgrade PHP to support 8.2 and 8.3 only; Remove CaptainHook

Upgrade PHP to support 8.2 and 8.3 only; Remove CaptainHook #55

Workflow file for this run

name: check coding style
on: [push, pull_request]
jobs:
phpcs:
runs-on: ubuntu-latest
strategy:
fail-fast: true
steps:
- name: Checkout code
uses: actions/checkout@v2
with:
ref: ${{ github.head_ref }}
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.3
extensions: mbstring, pdo, pdo_sqlite, openssl
coverage: none
- name: Install dependencies
run: composer install
- name: run PHPCS
run: vendor/bin/phpcs src tests