Skip to content

Commit

Permalink
fix copy&paste mistake in GitHub workflow
Browse files Browse the repository at this point in the history
removed test/ from lint and phpstan step
  • Loading branch information
gregor-j committed Jul 24, 2024
1 parent 82e28ef commit 39c266d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
- name: "check PHP version"
run: "php -v"
- name: "lint PHP files"
run: "php -l src/ tests/"
run: "php -l src/"
- name: "install composer dependencies"
run: "composer install --prefer-dist --no-progress"
# PHPStan
Expand All @@ -51,4 +51,4 @@ jobs:
with:
php_version: "${{ matrix.php-version }}"
configuration: "phpstan.neon"
path: "src/ tests/"
path: "src/"

0 comments on commit 39c266d

Please sign in to comment.