From c4caf8e8a7281d778d442fa436d72b96f2000117 Mon Sep 17 00:00:00 2001 From: Michael Dyrynda Date: Tue, 27 Jul 2021 11:39:02 +0930 Subject: [PATCH] add php 7.3 back to tests, seeing as Laravel still supports it as minimum for now --- .github/workflows/run-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index f38cc44..3c9e1ea 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -11,7 +11,7 @@ jobs: strategy: fail-fast: false matrix: - php: [8.0, 7.4] + php: [8.0, 7.4, 7.3] dependency-version: [prefer-lowest, prefer-stable] name: P${{ matrix.php }} - L${{ matrix.laravel }} ${{ matrix.dependency-version }} - ${{ matrix.os }}