Skip to content

Update webmozart/assert requirement from ^1.10 to ^2.4 #286

Update webmozart/assert requirement from ^1.10 to ^2.4

Update webmozart/assert requirement from ^1.10 to ^2.4 #286

Workflow file for this run

name: Tests
on:
pull_request: null
push:
branches:
- master
env:
# see https://github.com/composer/composer/issues/9368#issuecomment-718112361
COMPOSER_ROOT_VERSION: "dev-master"
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions:
- "8.2"
- "8.3"
- "8.4"
dependencies:
- "lowest"
- "highest"
name: "Run tests with PHP ${{ matrix.php-versions }} using composer dependencies ${{ matrix.dependencies }}"
steps:
- uses: actions/checkout@v6
- uses: shivammathur/setup-php@v2
with:
php-version: "${{ matrix.php-versions }}"
extensions: intl, mbstring, pdo_sqlite, pdo_mysql
coverage: none
env:
COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Start MySQL
run: sudo /etc/init.d/mysql start
# see https://github.com/ramsey/composer-install
- uses: "ramsey/composer-install@v3"
with:
dependency-versions: "${{ matrix.dependencies }}"
- 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