Skip to content

Commit

Permalink
Add the --ansi flag in the GitHub workflow file
Browse files Browse the repository at this point in the history
  • Loading branch information
leofeyer committed Apr 4, 2024
1 parent e5810c9 commit 07a8990
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,16 +56,16 @@ jobs:
uses: actions/checkout@v3

- name: Install the dependencies
run: composer install --no-interaction --no-progress
run: composer install --no-interaction --no-progress --ansi

- name: Run Rector
run: vendor/bin/rector --dry-run --no-progress-bar
run: vendor/bin/rector --dry-run --no-progress-bar --ansi

- name: Run ECS
run: vendor/bin/ecs check --no-progress-bar
run: vendor/bin/ecs check --no-progress-bar --ansi

- name: Run PHPStan
run: vendor/bin/phpstan analyse --no-progress
run: vendor/bin/phpstan analyse --no-progress --ansi

tests:
name: PHP ${{ matrix.php }}
Expand Down

0 comments on commit 07a8990

Please sign in to comment.