[BUGFIX] Mitigate backend layout override conflicts with other extension #18
Workflow file for this run
This file contains hidden or 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: tests core 12 | |
| on: | |
| pull_request: | |
| jobs: | |
| code-quality: | |
| name: "code quality with core v12" | |
| runs-on: ubuntu-22.04 | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| php-version: [ '8.1' ] | |
| steps: | |
| - name: "Checkout" | |
| uses: actions/checkout@v4 | |
| - name: "Prepare dependencies for TYPO3 v12" | |
| run: | | |
| Build/Scripts/runTests.sh -t 12 -p ${{ matrix.php-version }} -s composerUpdate | |
| - name: "Validate CGL" | |
| run: | | |
| Build/Scripts/runTests.sh -t 12 -p ${{ matrix.php-version }} -s cgl -n | |
| - name: "Ensure tests methods do not start with \"test\"" | |
| run: | | |
| Build/Scripts/runTests.sh -t 12 -p ${{ matrix.php-version }} -s checkTestMethodsPrefix | |
| - name: "Ensure UTF-8 files do not contain BOM" | |
| run: | | |
| Build/Scripts/runTests.sh -t 12 -p ${{ matrix.php-version }} -s checkBom | |
| # - name: "Test .rst files for integrity" | |
| # run: | | |
| # Build/Scripts/runTests.sh -t 12 -p ${{ matrix.php-version }} -s checkRst | |
| - name: "Find duplicate exception codes" | |
| run: | | |
| Build/Scripts/runTests.sh -t 12 -p ${{ matrix.php-version }} -s checkExceptionCodes | |
| - name: "Run PHPStan" | |
| run: | | |
| Build/Scripts/runTests.sh -t 12 -p ${{ matrix.php-version }} -s phpstan | |
| testsuite: | |
| name: all tests with core v12 | |
| runs-on: ubuntu-22.04 | |
| needs: code-quality | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| php-version: [ '8.1', '8.2', '8.3', '8.4' ] | |
| steps: | |
| - name: "Checkout" | |
| uses: actions/checkout@v4 | |
| - name: "Prepare dependencies for TYPO3 v12" | |
| run: | | |
| Build/Scripts/runTests.sh -t 12 -p ${{ matrix.php-version }} -s composerUpdate | |
| - name: "Run PHP lint" | |
| run: | | |
| Build/Scripts/runTests.sh -t 12 -p ${{ matrix.php-version }} -s lintPhp | |
| - name: "Unit" | |
| run: | | |
| Build/Scripts/runTests.sh -t 12 -p ${{ matrix.php-version }} -s unit | |
| - name: "Unit Random" | |
| run: | | |
| Build/Scripts/runTests.sh -t 12 -p ${{ matrix.php-version }} -s unitRandom | |
| - name: "Functional SQLite" | |
| run: | | |
| Build/Scripts/runTests.sh -t 12 -p ${{ matrix.php-version }} -s functional -d sqlite | |
| - name: "Functional MariaDB 10.5 mysqli" | |
| run: | | |
| Build/Scripts/runTests.sh -t 12 -p ${{ matrix.php-version }} -s functional -d mariadb -a mysqli | |
| - name: "Functional MariaDB 10.5 pdo_mysql" | |
| run: | | |
| Build/Scripts/runTests.sh -t 12 -p ${{ matrix.php-version }} -s functional -d mariadb -a pdo_mysql | |
| - name: "Functional MySQL 8.0 mysqli" | |
| run: | | |
| Build/Scripts/runTests.sh -t 12 -p ${{ matrix.php-version }} -s functional -d mariadb -a mysqli | |
| - name: "Functional MySQL 8.0 pdo_mysql" | |
| run: | | |
| Build/Scripts/runTests.sh -t 12 -p ${{ matrix.php-version }} -s functional -d mariadb -a pdo_mysql | |
| - name: "Functional PostgresSQL 10" | |
| run: | | |
| Build/Scripts/runTests.sh -t 12 -p ${{ matrix.php-version }} -s functional -d postgres |