Skip to content

Update README.md for V12 #147

Update README.md for V12

Update README.md for V12 #147

Workflow file for this run

name: FunctionalTests
on: [push, pull_request]
jobs:
testsuite:
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: [ubuntu-latest]
php-version: ['8.1', '8.2', '8.3']
core-version: ['12', '13']
db: ['mariadb', 'postgres']
exclude:
- php-version: '8.1'
core-version: '13'
name: TYPO3 v${{ matrix.core-version }} with PHP ${{ matrix.php-version }}
steps:
- uses: shivammathur/setup-php@master
with:
php-version: ${{ matrix.php-version }}
extensions: json,intl,mbstring
- name: Checkout repository
uses: actions/checkout@v4
- run: Build/Scripts/runTests.sh -p ${{ matrix.php-version }} -t ${{ matrix.core-version }} -s composerUpdate
- run: Build/Scripts/runTests.sh -p ${{ matrix.php-version }} -t ${{ matrix.core-version }} -s functional -d ${{matrix.db}}