Update typo3/testing-framework requirement from ^6.0 || ^7.0.2 to ^8.2.0 #191
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
name: Tests | |
on: | |
pull_request: null | |
push: | |
branches: | |
- 'main' | |
env: | |
# see https://github.com/composer/composer/issues/9368#issuecomment-718112361 | |
COMPOSER_ROOT_VERSION: "dev-main" | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
strategy: | |
max-parallel: 2 | |
matrix: | |
typo3-versions: | |
- { typo3: ^10.4, testing: ^6, php: 7.4 } | |
- { typo3: ^11.5, testing: ^7, php: 8.1 } | |
- { typo3: ^12.4, testing: ^7, php: 8.1 } | |
name: "Run tests with PHP ${{ matrix.typo3-versions.php }} | |
using TYPO3 ${{ matrix.typo3-versions.typo3 }} | |
with testing framework version ${{ matrix.typo3-versions.testing }}" | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: shivammathur/setup-php@v2 | |
with: | |
php-version: "${{ matrix.typo3-versions.php }}" | |
extensions: intl, mbstring, pdo_sqlite, pdo_mysql | |
tools: composer:v2 | |
coverage: none | |
env: | |
COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Start MySQL | |
run: sudo /etc/init.d/mysql start | |
- name: Run composer require | |
run: "composer require typo3/testing-framework:${{ matrix.typo3-versions.testing }} typo3/cms-core:${{ matrix.typo3-versions.typo3 }}" | |
# see https://github.com/ramsey/composer-install | |
- uses: "ramsey/composer-install@v3" | |
- name: "Run Unit tests" | |
run: composer test-unit | |
- name: "Functional tests" | |
run: | | |
export typo3DatabaseName="typo3"; | |
export typo3DatabaseHost="127.0.0.1"; | |
export typo3DatabaseUsername="root"; | |
export typo3DatabasePassword="root"; | |
composer test-functional |