diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index f1706fc..f2bbfcf 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -48,6 +48,10 @@ jobs: phpcs: name: PHP Lint runs-on: ubuntu-latest + strategy: + fail-fast: false + matrix: + php: [ '7.4', '8.0', '8.1', '8.2' ] steps: - name: Checkout @@ -64,4 +68,4 @@ jobs: run: composer install - name: PHPCS check - run: './vendor/bin/phpcs . -q --report=checkstyle --warning-severity=6 --runtime-set testVersion 7.4- | cs2pr' + run: "./vendor/bin/phpcs . -q --report=checkstyle --warning-severity=6 --runtime-set testVersion ${{ matrix.php }}- | cs2pr"