Skip to content

Commit eca97a8

Browse files
author
nix
committed
fix QA action
1 parent 1209a4e commit eca97a8

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/quality-assurance.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ permissions:
1111

1212
jobs:
1313
unit-tests:
14-
name: PHPUnit tests + cov. (on PHP ${{ matrix.php }})
14+
name: PHPUnit tests + cov. (PHP ${{ matrix.php }})
1515
runs-on: ubuntu-latest
1616
strategy:
1717
matrix:
@@ -31,19 +31,19 @@ jobs:
3131
- run: ./composer.phar test+coverage
3232
- name: 'Setup Pages'
3333
uses: actions/configure-pages@v5
34-
- name: 'Upload results (${{ matrix.php }})'
35-
id: deployment-${{ matrix.php }}
34+
- name: 'Upload results (PHP ${{ matrix.php }})'
35+
id: deployment
3636
uses: actions/upload-pages-artifact@v3
3737
with:
3838
path: 'tests-output/coverage'
3939
name: coverage-${{ matrix.php }}
40-
- name: 'Deploy to GitHub pages (${{ matrix.php }})'
41-
id: deployment-${{ matrix.php }}
40+
- name: 'Deploy to GitHub pages (PHP ${{ matrix.php }})'
41+
id: deployment
4242
uses: actions/deploy-pages@v4
4343
with:
4444
artifact_name: coverage-${{ matrix.php }}
4545
static-analysis:
46-
name: PHPStan checks (on PHP ${{ matrix.php }})
46+
name: PHPStan checks (PHP ${{ matrix.php }})
4747
runs-on: ubuntu-latest
4848
strategy:
4949
matrix:

0 commit comments

Comments
 (0)