chore(deps): bump actions/checkout from 4.2.2 to 5.0.1 #360
Workflow file for this run
This file contains hidden or 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 | |
| permissions: | |
| contents: read | |
| jobs: | |
| codestyle: | |
| name: Run code style check | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Check out source code | |
| uses: actions/[email protected] | |
| - name: Set up PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: 8.3 | |
| - 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 |