Skip to content

Commit 7cba72f

Browse files
authored
Fail actions on code quality issues (#175)
1 parent 0d24bda commit 7cba72f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/test.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -194,15 +194,15 @@ jobs:
194194
uses: codecov/codecov-action@v1
195195

196196
- name: PHP Code Sniffer
197-
continue-on-error: true
197+
if: always()
198198
run: php vendor/bin/phpcs
199199

200200
- name: Psalm
201-
continue-on-error: true
201+
if: always()
202202
run: php vendor/bin/psalm --show-info=true
203203

204204
- name: Psalter
205-
continue-on-error: true
205+
if: always()
206206
run: php vendor/bin/psalter --issues=UnnecessaryVarAnnotation --dry-run
207207

208208
build-conformance-suite:

0 commit comments

Comments
 (0)