Skip to content

Commit c079922

Browse files
committed
Run CI for each client
1 parent 2872dd9 commit c079922

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

Makefile

-12
Original file line numberDiff line numberDiff line change
@@ -37,22 +37,10 @@ cs-fix: ## Fix any automatically fixable code style issues
3737
cs: ## Check the code for code style issues
3838
$(DOCKER_RUN) vendor/bin/phpcs --parallel=$(shell nproc) --standard=./etc/qa/phpcs.xml
3939

40-
stan: ## Run static analysis (PHPStan)
41-
$(DOCKER_RUN) vendor/bin/phpstan analyse src tests --level max --ansi -c ./etc/qa/phpstan.neon
42-
43-
psalm: ## Run static analysis (Psalm)
44-
$(DOCKER_RUN) vendor/bin/psalm --threads=$(shell nproc) --shepherd --stats --config=./etc/qa/psalm.xml
45-
4640
unit-testing: ## Run tests
4741
$(DOCKER_RUN) vendor/bin/phpunit --colors=always -c ./etc/qa/phpunit.xml
4842
$(DOCKER_RUN) test -n "$(COVERALLS_REPO_TOKEN)" && test -n "$(COVERALLS_RUN_LOCALLY)" && test -f ./var/tests-unit-clover-coverage.xml && vendor/bin/php-coveralls -v --coverage_clover ./build/logs/clover.xml --json_path ./var/tests-unit-clover-coverage-upload.json || true
4943

50-
mutation-testing: ## Run mutation testing
51-
$(DOCKER_RUN) vendor/bin/infection --ansi --min-msi=100 --min-covered-msi=100 --threads=$(shell nproc) --ignore-msi-with-no-mutations || (cat ./var/infection.log && false)
52-
53-
backward-compatibility-check: ## Check code for backwards incompatible changes
54-
$(DOCKER_RUN) vendor/bin/roave-backward-compatibility-check || true
55-
5644
shell: ## Provides Shell access in the expected environment ###
5745
$(DOCKER_RUN) ash
5846

0 commit comments

Comments
 (0)