Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[php] disable php-cs progress bar output in CI #233

Merged
merged 3 commits into from
Mar 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test-php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
- name: Run tests
working-directory: php
run: |
vendor/bin/php-cs-fixer --dry-run --diff fix
vendor/bin/php-cs-fixer --show-progress=none --dry-run --diff fix
vendor/bin/psalm --no-cache
vendor/bin/phpunit

Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ acceptance-%: %
cd $< && make acceptance
.PHONY: acceptance-%

clean: $(patsubst %,clean-%,$(languages)) ## Remove all build artifacts and files generated by the acceptance tests for all supported languages
clean: $(patsubst %,clean-%,$(languages)) ## Remove all build artifacts and files generated by the acceptance tests for all supported languages
.PHONY: clean

clean-%: %
Expand Down Expand Up @@ -59,4 +59,4 @@ docker-run: ## Start a docker container with all languages and tools installed
--tty \
cucumber/cucumber-build:0.13.0 \
bash
.PHONY:
.PHONY:
2 changes: 1 addition & 1 deletion php/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ help: ## Show this help

generate: $(GHERKIN_PARSER) ## Generate gherkin parser files

clean-generate: ## Remove generated Gherkin parser files ## Generate gherkin parser files
clean-generate: ## Remove generated Gherkin parser files
rm -f $(GHERKIN_PARSER)

copy-gherkin-languages: $(GHERKIN_LANGUAGES_JSON) ## Copy gherkin-languages.json and/or generate derived files
Expand Down
Loading