Skip to content

Commit 3741517

Browse files
committed
fix: invalid workflow file
Signed-off-by: Elizabeth Danzberger <[email protected]>
1 parent f2a1859 commit 3741517

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.github/workflows/psalm.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ jobs:
3939
runs-on: ubuntu-latest
4040
needs: matrix
4141
strategy:
42+
fail-fast: false
4243
matrix:
43-
fail-fast: false
4444
php-versions: ${{ fromJson(needs.matrix.outputs.php-versions) }}
4545

4646
name: static-psalm-analysis
@@ -74,14 +74,14 @@ jobs:
7474
- name: Run coding standards check
7575
run: composer run psalm -- --threads=1 --monochrome --no-progress --output-format=github
7676

77-
summary:
78-
runs-on: ubuntu-latest-low
79-
needs: static-analysis
77+
summary:
78+
runs-on: ubuntu-latest-low
79+
needs: static-analysis
8080

81-
if: always()
81+
if: always()
8282

83-
name: static-analysis-summary
83+
name: static-analysis-summary
8484

85-
steps:
86-
- name: Summary status
87-
run: if ${{ needs.static-analysis.result != 'success' && needs.static-analysis.result != 'skipped' }}; then exit 1; fi
85+
steps:
86+
- name: Summary status
87+
run: if ${{ needs.static-analysis.result != 'success' && needs.static-analysis.result != 'skipped' }}; then exit 1; fi

0 commit comments

Comments
 (0)