Skip to content

Commit

Permalink
Merge pull request #19 from cycle/docs/next-docs
Browse files Browse the repository at this point in the history
chore: minor updates
  • Loading branch information
lotyp authored May 9, 2024
2 parents 7cc6ab3 + 50b7e63 commit 9f5951f
Show file tree
Hide file tree
Showing 6 changed files with 93 additions and 78 deletions.
1 change: 1 addition & 0 deletions .github/workflows/integrate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ jobs:
globs: |
**/*.md
!CHANGELOG.md
!./docs
code-coverage:
timeout-minutes: 4
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -203,11 +203,11 @@ lint-actions: ## Lint all github actions
.PHONY: lint-actions

lint-md: ## Lint all markdown files using markdownlint-cli2
@$(MARKDOWN_LINT_RUNNER) --fix "**/*.md" "!CHANGELOG.md" "!vendor" | tee -a $(MAKE_LOGFILE)
@$(MARKDOWN_LINT_RUNNER) --fix "**/*.md" "!CHANGELOG.md" "!vendor" "!docs" | tee -a $(MAKE_LOGFILE)
.PHONY: lint-md

lint-md-dry: ## Lint all markdown files using markdownlint-cli2 in dry-run mode
@$(MARKDOWN_LINT_RUNNER) "**/*.md" "!CHANGELOG.md" "!vendor" | tee -a $(MAKE_LOGFILE)
@$(MARKDOWN_LINT_RUNNER) "**/*.md" "!CHANGELOG.md" "!vendor" "!docs" | tee -a $(MAKE_LOGFILE)
.PHONY: lint-md-dry

lint-php: prepare ## Fixes code to follow coding standards using php-cs-fixer
Expand Down
Loading

0 comments on commit 9f5951f

Please sign in to comment.