Skip to content

Commit

Permalink
[TASK] add php version number to Action name
Browse files Browse the repository at this point in the history
  • Loading branch information
Kanti authored and sabbelasichon committed Nov 6, 2023
1 parent 2334c0b commit acb5784
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/code_analysis.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,23 +18,23 @@ jobs:
php-versions: [ 7.4, 8.0, 8.1 ]
actions:
-
name: "PHP Linter"
name: "${{ matrix.php-versions }} PHP Linter"
run: vendor/bin/parallel-lint src config tests

-
name: 'Composer Validate'
name: '${{ matrix.php-versions }} Composer Validate'
run: composer validate --ansi

-
name: 'Tests'
name: '${{ matrix.php-versions }} Tests'
run: vendor/bin/phpunit

-
name: 'Check TYPO3 Rector configs'
name: '${{ matrix.php-versions }} Check TYPO3 Rector configs'
run: composer check-typo3-rector

-
name: 'PHPStan'
name: '${{ matrix.php-versions }} PHPStan'
run: composer analyze

name: ${{ matrix.actions.name }}
Expand Down

0 comments on commit acb5784

Please sign in to comment.