From ac028a7f3fb0d863e7525d49c0dd6a2eaef1c36c Mon Sep 17 00:00:00 2001 From: Danny van Kooten Date: Thu, 17 Feb 2022 10:42:10 +0100 Subject: [PATCH] run tests only on php >= 7.3 --- .github/workflows/php.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index 3e5d4a0..c428ab7 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -7,7 +7,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - php-versions: [ '7.1', '7.2', '7.3', '7.4', '8.0', '8.1' ] + php-versions: [ '7.3', '7.4', '8.0', '8.1' ] steps: - uses: actions/checkout@v2