diff --git a/.github/workflows/psalm.yml b/.github/workflows/psalm.yml index a5bd4f19..f2b0c1a5 100644 --- a/.github/workflows/psalm.yml +++ b/.github/workflows/psalm.yml @@ -36,4 +36,4 @@ jobs: run: composer install --prefer-dist --no-interaction --no-progress --dev - name: Run Psalm - run: vendor/bin/psalm --show-info=true + run: vendor/bin/psalm --config=psalm.xml.dist --show-info=true diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d9910644..eeb9324f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -39,4 +39,4 @@ jobs: run: composer update --prefer-dist --no-interaction --no-progress - name: Run PHPUnit ${{ matrix.phpunit-version }} - run: vendor/bin/phpunit --coverage-xml=build/coverage-xml + run: vendor/bin/phpunit --configuration=phpunit.xml.dist --coverage-xml=build/coverage-xml diff --git a/phpunit.xml b/phpunit.xml.dist similarity index 100% rename from phpunit.xml rename to phpunit.xml.dist diff --git a/psalm.xml b/psalm.xml.dist similarity index 100% rename from psalm.xml rename to psalm.xml.dist