summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/lint-php.yml18
1 files changed, 3 insertions, 15 deletions
diff --git a/.github/workflows/lint-php.yml b/.github/workflows/lint-php.yml
index c1d72cc6..943e80b8 100644
--- a/.github/workflows/lint-php.yml
+++ b/.github/workflows/lint-php.yml
@@ -13,13 +13,13 @@ on:
- stable*
jobs:
- php-lint:
+ lint:
runs-on: ubuntu-latest
strategy:
matrix:
- php-versions: ["7.4", "8.0"]
+ php-versions: ["7.3", "7.4", "8.0"]
- name: php-lint
+ name: php
steps:
- name: Checkout
@@ -33,15 +33,3 @@ jobs:
- name: Lint
run: composer run lint
-
- summary:
- runs-on: ubuntu-latest
- needs: php-lint
-
- if: always()
-
- name: php-lint-summary
-
- steps:
- - name: Summary status
- run: if ${{ needs.php-lint.result != 'success' && needs.php-lint.result != 'skipped' }}; then exit 1; fi