CI (static) #60
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
# statics checks | |
# - run only with latest TYPO3 and PHP version | |
name: CI (static) | |
on: | |
push: | |
pull_request: | |
jobs: | |
testsuite_ci_static: | |
name: CI static | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
# run static checks only with latest PHP version (for supported TYPO3 versions) | |
#php: [ '8.1', '8.2', '8.3' ] | |
php: [ '8.3' ] | |
# run static checks only with latest TYPO3 version | |
minMax: [ 'composerInstallMax' ] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Composer | |
run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -s ${{ matrix.minMax }} | |
- name: Composer validate | |
run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -s composerValidate | |
- name: cgl | |
run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -s cgl -v -n | |
- name: Lint PHP | |
run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -s lint |