Skip to content

Commit

Permalink
CI tool improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasbestle committed May 14, 2021
1 parent 84e83a6 commit cf36829
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:

- name: Statically analyze using Psalm
if: always() && steps.finishPrepare.outcome == 'success'
run: psalm --output-format=github
run: psalm --output-format=github --php-version=${{ matrix.php }}

- name: Upload coverage results to Codecov
uses: codecov/codecov-action@a1ed4b322b4b38cb846afb5a0ebfa17086917d27 # pin@v1
Expand Down Expand Up @@ -167,7 +167,7 @@ jobs:

- name: Statically analyze using PHPMD
if: always() && steps.composerInstall.outcome == 'success'
run: phpmd . ansi phpmd.xml.dist --exclude 'tests/*,vendor/*'
run: phpmd . github phpmd.xml.dist --exclude 'tests/*,vendor/*'

coding-style:
name: Coding Style & Frontend Analysis
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"@analyze",
"@test"
],
"fix": "php-cs-fixer fix --config .php_cs",
"fix": "php-cs-fixer fix",
"test": "phpunit --stderr --coverage-html=tests/coverage"
}
}

0 comments on commit cf36829

Please sign in to comment.