diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 018b489193..730037e687 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -504,11 +504,10 @@ jobs: runs-on: windows-2025 strategy: matrix: - type: ['unit', 'functional'] - php: ['8.4'] + php: ['8.1', '8.2', '8.3', '8.4'] db: ['postgres'] - name: Windows - ${{ matrix.type }} - PHP ${{ matrix.php }} - ${{ matrix.db }} + name: Windows - PHP ${{ matrix.php }} - ${{ matrix.db }} steps: - name: Prepare git for Windows @@ -640,16 +639,5 @@ jobs: run: npm ci - name: Run unit tests - if: ${{ matrix.type == 'unit' }} run: | phpBB/vendor/bin/phpunit --configuration .github/phpunit-psql-windows-github.xml --display-all-issues --stop-on-error --exclude-group functional,slow - - name: Run functional tests - if: ${{ matrix.type == 'functional' }} - timeout-minutes: 45 - env: - PHPBB_FUNCTIONAL_TIMEOUT: 30 - SYMFONY_DEPRECATIONS_HELPER: disabled - PHPBB_TEST_REDIS_HOST: '' - PHPBB_TEST_MEMCACHED_HOST: '' - run: | - phpBB/vendor/bin/phpunit --configuration .github/phpunit-psql-windows-github.xml --display-all-issues --stop-on-error --group functional