From 2a0ee3f65be3619d4dfe9a77ed91adc53f3ba57d Mon Sep 17 00:00:00 2001 From: Nick Liu Date: Sat, 28 Oct 2023 12:35:45 -0500 Subject: [PATCH] CI: Remove uninteresting service versions Now, we just test the PHP and MySQL/MariaDB versions that have big changes starting from the lowest versions we support up to the highest versions we support. --- .github/workflows/test-unit.yml | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/.github/workflows/test-unit.yml b/.github/workflows/test-unit.yml index 33f422cf78..abcf6876fa 100644 --- a/.github/workflows/test-unit.yml +++ b/.github/workflows/test-unit.yml @@ -18,25 +18,14 @@ jobs: interpreter: - image: php:5.6 - image: php:7.0 - - image: php:7.1 - - image: php:7.2 - - image: php:7.3 - image: php:7.4 - - image: php:8.0 - image: php:8.1 db: - image: mysql:5.5 - - image: mysql:5.6 - - image: mysql:5.7 - image: bitnami/mysql:8.0 - image: mariadb:10.0 - - image: mariadb:10.1 - - image: mariadb:10.2 - - image: mariadb:10.3 - - image: mariadb:10.4 - - image: mariadb:10.5 - image: mariadb:10.6 - - image: mariadb:10.10 + - image: mariadb:10.11 runs-on: ubuntu-latest container: image: ${{ matrix.interpreter.image }}