Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Update lint-php.yml
  • Loading branch information
skjnldsv authored and backportbot[bot] committed Jan 19, 2022
commit e321dfb0d044db762d6ccf2c11ac48591a0d25e0
16 changes: 14 additions & 2 deletions .github/workflows/lint-php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ on:
- stable*

jobs:
lint:
php-lint:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: ["7.3", "7.4", "8.0"]

name: php
name: php-lint

steps:
- name: Checkout
Expand All @@ -33,3 +33,15 @@ 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