From e133e1541787e9d8757f37a18de6d336bff50429 Mon Sep 17 00:00:00 2001 From: jrfnl Date: Tue, 4 Apr 2023 10:46:51 +0200 Subject: [PATCH] GH Actions: remove build against PHP 5.6.20 The `setup-php` action doesn't allow for requesting specific minors, so the PHP `5.6.20` build was in practice `5.6.40`, which was already being tested, so it having a separate `5.6.20` build has no added value. --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e6d7e0a41..e74cd1f4f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -23,12 +23,12 @@ jobs: # Keys: # - coverage: Whether to run the tests with code coverage. matrix: - php: ['5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.3'] + php: ['7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.3'] coverage: [false] include: # Run code coverage on low/high PHP. - - php: '5.6.20' + - php: '5.6' coverage: true - php: '8.2' coverage: true