File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 5151 --exclude vendor
5252 --no-progress
5353 .
54- # # 01.quality.php.validate.dependencies-file.yml
54+
55+ # 01.quality.php.validate.dependencies-file.yml
5556 validate-dependencies-file :
5657 name : Validate dependencies file
5758 runs-on : ubuntu-24.04
6364 --no-plugins
6465 --no-scripts
6566 --strict
67+
6668 # 02.test.php.test-unit.yml
6769 php-unittest :
6870 name : PHP Unit Tests
8991 env :
9092 COMPOSER_AUTH : ' {"github-oauth": {"github.com": "${{ secrets.GITHUB_TOKEN }}"}}'
9193 - run : vendor/bin/phpunit --configuration tests/phpunit/phpunit.xml
94+
9295 # 03.quality.php.scan.dependencies-vulnerabilities.yml
9396 scan-dependencies-vulnerabilities :
9497 name : Scan Dependencies Vulnerabilities
@@ -107,6 +110,24 @@ jobs:
107110 --no-dev
108111 --no-plugins
109112 --no-scripts
113+
114+
115+ # 03.quality.php.lint-quality.yml
116+ php-lint-quality :
117+ needs :
118+ - lint-php-syntax
119+ runs-on : ubuntu-24.04
120+ steps :
121+ - uses : actions/checkout@v4
122+ - uses : docker://pipelinecomponents/php-codesniffer
123+ with :
124+ args : >-
125+ phpcs
126+ --standard=.config/phpcs.xml.dist
127+ --report-full
128+ --report-summary
129+ .
130+
110131 # 03.quality.php.lint-version-compatibility.yml
111132 php-check-version-compatibility :
112133 name : PHP Version Compatibility
You can’t perform that action at this time.
0 commit comments