v3.0.3-dev #77
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 | |
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' ] | |
# 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 | |
# - name: Unit tests | |
# run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -s unit | |
# - name: Functional tests with mariadb | |
# run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -d mariadb -s functional | |
# - name: Functional tests with mssql | |
# run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -d mssql -s functional | |
# - name: Functional tests with postgres | |
# run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -d postgres -s functional | |
# - name: Functional tests with sqlite | |
# run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -d sqlite -s functional |