From 218f9252414e6eb923dbaa2f3fe24065f0ea8dee Mon Sep 17 00:00:00 2001 From: Nikita Hovratov Date: Tue, 9 Jul 2024 21:54:07 +0200 Subject: [PATCH] [TASK] Test with different phpunit versions --- .github/workflows/tests.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index c0fc0e3c..c280d3a3 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -56,8 +56,10 @@ jobs: include: - TYPO3: '12.4' php: '8.2' + phpunit: '10' - TYPO3: '13.2' php: '8.2' + phpunit: '11' steps: - name: Setup PHP uses: shivammathur/setup-php@v2 @@ -78,7 +80,7 @@ jobs: restore-keys: ${{ runner.os }}-composer- - name: Install dependencies - run: composer require typo3/cms-core:^${{ matrix.TYPO3 }} --prefer-dist --no-progress + run: composer require typo3/cms-core:^${{ matrix.TYPO3 }} phpunit/phpunit:^${{ matrix.phpunit }} --prefer-dist --no-progress - name: Unit run: Build/Scripts/runTests.sh -s unit -p ${{ matrix.php }}