From 5fc760f6addd278488d4747a870495d12cf690e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20B=C3=B6hmer?= Date: Sat, 25 Nov 2023 19:42:05 +0100 Subject: [PATCH] Run phpunit tests against PHP 8.3 --- .github/workflows/tests.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index a22d07a6..ef2cea33 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -13,12 +13,11 @@ on: jobs: phpunit: name: PHPUnit and coverage Test (PHP ${{ matrix.php-versions }}, ${{ matrix.db-type }}) - # Ubuntu 20.04 ships MySQL 8.0 which causes problems with login, so we just use ubuntu 18.04 for now... runs-on: ubuntu-22.04 strategy: matrix: - php-versions: [ '8.1', '8.2' ] + php-versions: [ '8.1', '8.2', '8.3' ] db-type: [ 'mysql', 'sqlite' ] env: