Lock file maintenance #109
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/setup-php@2.31.1" | |
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/composer-install@3.0.0" | |
with: | |
dependency-versions: "${{ matrix.dependencies }}" | |
- name: "php cs fixer dry run" | |
run: "php-cs-fixer fix --dry-run --format=checkstyle | cs2pr" |