build(deps): bump pipeline-components/php-codesniffer from 0.35.1 to 0.40.1 #311
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: CI | |
on: pull_request | |
jobs: | |
# WAS: michaelw90/PHP-Lint@master, stuck on docker PHP7.3! | |
# WORKS for: StephaneBour/[email protected] = simply "php -l" | |
phplint: | |
name: PHP Lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: overtrue/[email protected] | |
php-codesniffer74: | |
name: PHP CS 7.4 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Codesniffer | |
uses: pipeline-components/[email protected] | |
with: | |
options: -s -p --colors --extensions=php --runtime-set testVersion 7.4 | |
php-codesniffer80: | |
name: PHP CS 8.0 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Codesniffer | |
uses: pipeline-components/[email protected] | |
with: | |
options: -s -p --colors --extensions=php --runtime-set testVersion 8.0 | |
php-codesniffer81: | |
name: PHP CS 8.1 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Codesniffer | |
uses: pipeline-components/[email protected] | |
with: | |
options: -s -p --colors --extensions=php --runtime-set testVersion 8.1 |