Skip to content

v5.0.0

v5.0.0 #101

Workflow file for this run

# 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