Skip to content

Commit

Permalink
[php] disable php-cs progress bar output in CI (#233)
Browse files Browse the repository at this point in the history
* [php] disable php-cs progress bar output

* [php] Fix Makefile help comment

* [php] Fix typo in help output
  • Loading branch information
olleolleolle authored Mar 12, 2024
1 parent 196b6c6 commit 4975f01
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
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

0 comments on commit 4975f01

Please sign in to comment.