In the default github actions template the runs are in a single execution.
It may be an improvement to split these up for example:
- run: vendor/bin/php-cs-fixer fix --dry-run -v --diff
- run: vendor/bin/kahlan spec
- run: vendor/bin/psalm --find-unused-psalm-suppress
This avoids the issue of github displaying the first item as the title/name of the run and then grouping all the output nested under the first command. Some commands aren't particularly good at identifying themselves so it can be confusing to know what output is coming from what command.
In the default github actions template the runs are in a single execution.
It may be an improvement to split these up for example:
This avoids the issue of github displaying the first item as the title/name of the run and then grouping all the output nested under the first command. Some commands aren't particularly good at identifying themselves so it can be confusing to know what output is coming from what command.