Skip to content

Commit 251132a

Browse files
committed
Fix CI
1 parent f1051e8 commit 251132a

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/php.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
unit-tests-linux:
4141
name: "Unit tests, PHP ${{ matrix.php-versions }}, ${{ matrix.operating-system }}"
4242
runs-on: ${{ matrix.operating-system }}
43-
needs: [linter, quality, security]
43+
needs: [phplinter, linter]
4444
strategy:
4545
fail-fast: false
4646
matrix:
@@ -151,6 +151,7 @@ jobs:
151151

152152
quality:
153153
name: Quality control
154+
needs: [unit-tests-linux]
154155
runs-on: [ubuntu-latest]
155156

156157
steps:
@@ -204,7 +205,9 @@ jobs:
204205
205206
security:
206207
name: Security checks
208+
needs: [unit-tests-linux]
207209
runs-on: [ubuntu-latest]
210+
208211
steps:
209212
- name: Setup PHP, with composer and extensions
210213
# https://github.com/shivammathur/setup-php

0 commit comments

Comments
 (0)