Skip to content

Commit

Permalink
Update PHPStan command in GitHub Actions workflow
Browse files Browse the repository at this point in the history
Replaced the 'make lint-phpstan' command with a direct call to 'vendor/bin/phpstan --memory-limit=2G analyse.' This change ensures better control over memory usage and eliminates the dependency on the Makefile.

Signed-off-by: mesilov <[email protected]>
  • Loading branch information
mesilov committed Oct 6, 2024
1 parent e6c002b commit f442bad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/phpstan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
run: "composer update --no-interaction --no-progress --no-suggest"

- name: "PHPStan"
run: "make lint-phpstan"
run: "vendor/bin/phpstan --memory-limit=2G analyse"

- name: "is PHPStan check succeeded"
if: ${{ success() }}
Expand Down

0 comments on commit f442bad

Please sign in to comment.