From f034663f5984dfdf6692afbba17effb165b2c3c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Milan=20Felix=20=C5=A0ulc?= Date: Wed, 5 Jul 2023 11:25:05 +0200 Subject: [PATCH] CI: lint PHP 8.2 and 5.6 --- .github/workflows/lint.yml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 75e5950..5fefd4b 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -7,10 +7,18 @@ on: branches: [ "*" ] jobs: - lint: + lint82: name: "Linter" uses: contributte/.github/.github/workflows/php.yml@v1 with: name: "Linter" run: "vendor/bin/parallel-lint src" - php: "8.0" + php: "8.2" + + lint56: + name: "Linter" + uses: contributte/.github/.github/workflows/php.yml@v1 + with: + name: "Linter" + run: "vendor/bin/parallel-lint src" + php: "5.6"