From d0fc06682249407cd5e96c2d04daf363edbe1d32 Mon Sep 17 00:00:00 2001 From: Phil Davis Date: Mon, 1 Jan 2024 12:51:46 +0545 Subject: [PATCH] chore: adjust CI to run cs-fixer only on PHP 7.4 or later --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index aadd717..bb3724a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,12 +12,12 @@ jobs: strategy: fail-fast: false matrix: - php-versions: ['7.2', '7.3', '7.4', '8.0'] + php-versions: ['7.4', '8.0', '8.1', '8.2', '8.3'] cs-fixer: [ true ] include: - - php-versions: '8.1' + - php-versions: '7.2' cs-fixer: false - - php-versions: '8.2' + - php-versions: '7.3' cs-fixer: false steps: - name: Checkout