Merge pull request #163 from sascha-egerer/bugfix/fix-query-execute-r… #575
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 | |
| on: [ push, pull_request ] | |
| jobs: | |
| tests: | |
| name: "Tests" | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - typo3-version: "^13.4" | |
| php-version: "8.2" | |
| composer-flags: "" | |
| - typo3-version: "^13.4" | |
| php-version: "8.2" | |
| composer-flags: " --prefer-lowest" | |
| - typo3-version: "^13.4" | |
| php-version: "8.3" | |
| composer-flags: "" | |
| - typo3-version: "^13.4" | |
| php-version: "8.3" | |
| composer-flags: " --prefer-lowest" | |
| - typo3-version: "^13.4" | |
| php-version: "8.4" | |
| composer-flags: "" | |
| - typo3-version: "^13.4" | |
| php-version: "8.4" | |
| composer-flags: " --prefer-lowest" | |
| steps: | |
| - name: "Checkout" | |
| uses: "actions/checkout@v4" | |
| - name: "Install PHP" | |
| uses: "shivammathur/setup-php@v2" | |
| with: | |
| coverage: "none" | |
| php-version: "${{ matrix.php-version }}" | |
| - name: "Install specific TYPO3 version" | |
| run: "composer update --no-interaction --no-progress --with typo3/cms-core:${{ matrix.typo3-version }} ${{ matrix.composer-flags }}" | |
| - name: "Tests" | |
| run: | | |
| vendor/bin/phing |