Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🐛 fix Action names in code_analysis.yaml #3913

Merged
merged 1 commit into from
Nov 8, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/code_analysis.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,26 +18,26 @@ jobs:
php-versions: [ 7.4, 8.0, 8.1 ]
actions:
-
name: "${{ matrix.php-versions }} PHP Linter"
name: "PHP Linter"
run: vendor/bin/parallel-lint src config tests

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

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

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

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

name: ${{ matrix.actions.name }}
name: "${{ matrix.php-versions }} ${{ matrix.actions.name }}"
runs-on: ubuntu-latest

steps:
Expand Down
Loading