Skip to content

Merge pull request #206 from myrotvorets/renovate/shivammathur-setup-… #583

Merge pull request #206 from myrotvorets/renovate/shivammathur-setup-…

Merge pull request #206 from myrotvorets/renovate/shivammathur-setup-… #583

Workflow file for this run

name: Code Style Check
on:
push:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
codestyle:
name: Run code style check
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, '[ci skip]')"
steps:
- name: Check out source code
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Set up PHP
uses: shivammathur/setup-php@81cd5ae0920b34eef300e1775313071038a53429 # 2.27.0
with:
php-version: "8.0"
coverage: none
env:
fail-fast: 'true'
- name: Install dependencies
uses: ramsey/composer-install@83af392bf5f031813d25e6fe4cd626cdba9a2df6 # tag=2.2.0
- name: Add error matcher
run: echo "::add-matcher::$(pwd)/.github/checkstyle-problem-matcher.json"
- name: Run style check
run: composer phpcs -- --report=checkstyle