Skip to content

Commit

Permalink
ci: minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
lotyp committed Apr 21, 2024
1 parent 3748681 commit 7691a22
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
8 changes: 3 additions & 5 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,8 @@ trim_trailing_whitespace = true
[*.md]
trim_trailing_whitespace = false

[*{.yml,.yaml}]
indent_style = space
[*.{yml,yaml}]
indent_size = 2

[*.json]
indent_style = space
indent_size = 4
[Makefile]
indent_style = tab
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ ACTION_LINT_RUNNER ?= $(DOCKER) run --rm $$(tty -s && echo "-it" || echo) \
-v $(shell pwd):/repo \
--workdir /repo \
rhysd/actionlint:latest \
-color
-color -verbose

#
# Self documenting Makefile code
Expand Down Expand Up @@ -77,11 +77,11 @@ lint: lint-yaml lint-actions ## Lint all files
.PHONY: lint

lint-yaml: ## Lint all yaml files
@$(YAML_LINT_RUNNER)
@$(YAML_LINT_RUNNER) | tee -a $(MAKE_LOGFILE)
.PHONY: lint-yaml

lint-actions: ## Lint all github actions
@$(ACTION_LINT_RUNNER)
@$(ACTION_LINT_RUNNER) | tee -a $(MAKE_LOGFILE)
.PHONY: lint-actions

#
Expand Down

0 comments on commit 7691a22

Please sign in to comment.