Skip to content

Commit

Permalink
Enhancement: Use --ansi option
Browse files Browse the repository at this point in the history
  • Loading branch information
localheinz committed Feb 23, 2024
1 parent 40b04c8 commit f1a359f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/integrate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -134,16 +134,16 @@ jobs:
restore-keys: "php-${{ matrix.php-version }}-phpstan-"

- name: "Show phpstan/phpstan version"
run: "vendor/bin/phpstan --version"
run: "vendor/bin/phpstan --ansi --version"

- name: "Show phpunit/phpunit version"
run: "vendor/bin/phpunit --version"

- name: "Run phpstan/phpstan with extension"
run: "vendor/bin/phpstan analyse --configuration=phpstan-with-extension.neon --memory-limit=-1"
run: "vendor/bin/phpstan analyse --ansi --configuration=phpstan-with-extension.neon --memory-limit=-1"

- name: "Run phpstan/phpstan without extension"
run: "vendor/bin/phpstan analyse --configuration=phpstan-without-extension.neon --memory-limit=-1"
run: "vendor/bin/phpstan analyse --ansi --configuration=phpstan-without-extension.neon --memory-limit=-1"

tests:
name: "Tests"
Expand Down

0 comments on commit f1a359f

Please sign in to comment.