Skip to content

Commit cf36829

Browse files
committed
CI tool improvements
1 parent 84e83a6 commit cf36829

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ jobs:
7777

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

8282
- name: Upload coverage results to Codecov
8383
uses: codecov/codecov-action@a1ed4b322b4b38cb846afb5a0ebfa17086917d27 # pin@v1
@@ -167,7 +167,7 @@ jobs:
167167

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

172172
coding-style:
173173
name: Coding Style & Frontend Analysis

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
"@analyze",
4040
"@test"
4141
],
42-
"fix": "php-cs-fixer fix --config .php_cs",
42+
"fix": "php-cs-fixer fix",
4343
"test": "phpunit --stderr --coverage-html=tests/coverage"
4444
}
4545
}

0 commit comments

Comments
 (0)