Skip to content

Merge pull request #17 from deniskorbakov/renovate/actions-checkout-6.x #67

Merge pull request #17 from deniskorbakov/renovate/actions-checkout-6.x

Merge pull request #17 from deniskorbakov/renovate/actions-checkout-6.x #67

Workflow file for this run

name: LINT
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
coding-standard:
name: Coding Standard
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Setup PHP 8.4
uses: shivammathur/setup-php@v2
with:
php-version: '8.4'
coverage: none
extensions: dom, curl, libxml, mbstring, zip, pdo, sqlite, pdo_sqlite, bcmath, intl, gd
- name: Cache composer dependencies
uses: actions/cache@v4
with:
path: vendor
key: composer-${{ hashFiles('composer.lock') }}
- name: Install dependencies
run: composer install
- name: Run lint code
run: composer lint