Update dependency squizlabs/php_codesniffer to ^3.11.0 #100
Workflow file for this run
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: "continuous integration" | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
- "renovate/*" | |
jobs: | |
coding-standards: | |
name: "php cs fixer" | |
runs-on: ${{ matrix.operating-system }} | |
strategy: | |
matrix: | |
dependencies: | |
- "locked" | |
php-version: | |
- "8.1" | |
operating-system: | |
- "ubuntu-latest" | |
steps: | |
- name: "checkout" | |
uses: "actions/checkout@v4" | |
- name: "install PHP" | |
uses: "shivammathur/[email protected]" | |
with: | |
coverage: "none" | |
php-version: "${{ matrix.php-version }}" | |
ini-values: memory_limit=-1 | |
tools: composer:v2, cs2pr, php-cs-fixer | |
- name: "install dependencies" | |
uses: "ramsey/[email protected]" | |
with: | |
dependency-versions: "${{ matrix.dependencies }}" | |
- name: "php cs fixer dry run" | |
run: "php-cs-fixer fix --dry-run --format=checkstyle | cs2pr" |