Bump yoast/phpunit-polyfills from 1.1.0 to 3.1.0 #262
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Code Style Check | |
on: | |
push: | |
workflow_dispatch: | |
concurrency: | |
group: csc-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
codestyle: | |
name: Run code style check | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out source code | |
uses: actions/[email protected] | |
- name: Set up PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 8.1 | |
- name: Install PHP Dependencies | |
uses: ramsey/[email protected] | |
- name: Add error matcher | |
run: echo "::add-matcher::$(pwd)/.github/checkstyle-problem-matcher.json" | |
- name: Run style check | |
run: vendor/bin/phpcs --report=checkstyle |