From dd0385db095bb08de3e50ec5492c563c1c826581 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Elan=20Ruusam=C3=A4e?= Date: Mon, 20 Jan 2025 22:07:39 +0200 Subject: [PATCH 1/2] Add phpunit to matrix --- .github/workflows/tests-mongodb.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests-mongodb.yml b/.github/workflows/tests-mongodb.yml index 88745c8..c640be0 100644 --- a/.github/workflows/tests-mongodb.yml +++ b/.github/workflows/tests-mongodb.yml @@ -10,13 +10,16 @@ jobs: strategy: fail-fast: false matrix: + phpunit: + - "7.5" php: - "7.1" - "7.2" - "7.3" - "7.4" + env: - PHPUNIT_VERSION: "7.5" + PHPUNIT_VERSION: "${{ matrix.phpunit }}" PHP_VERSION: "${{ matrix.php }}" services: From c36e14d21d564d1ac15e649fafd45921cb3b0ada Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Elan=20Ruusam=C3=A4e?= Date: Mon, 20 Jan 2025 22:08:18 +0200 Subject: [PATCH 2/2] Add php 7.0 to test matrix --- .github/workflows/tests-mongodb.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/tests-mongodb.yml b/.github/workflows/tests-mongodb.yml index c640be0..d8df373 100644 --- a/.github/workflows/tests-mongodb.yml +++ b/.github/workflows/tests-mongodb.yml @@ -17,6 +17,9 @@ jobs: - "7.2" - "7.3" - "7.4" + include: + - php: "7.0" + phpunit: "6" env: PHPUNIT_VERSION: "${{ matrix.phpunit }}"