Skip to content

Commit

Permalink
use makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
dklimpel committed Jul 13, 2024
1 parent d45722e commit b8968fa
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/yamllint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Validate YAML file
run: yamllint -c .yamllint .
run: make lint-yaml
5 changes: 5 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,11 @@ arch: build
dgoss-sha256:
cd extras/dgoss/ && sha256sum dgoss > dgoss.sha256

.PHONY: lint-yaml
lint-yaml:
$(info INFO: Starting $@)
yamllint -c .yamllint .

$(PYTHON):
$(info Creating virtualenv in $(VENV))
@python -m venv $(VENV)
Expand Down

0 comments on commit b8968fa

Please sign in to comment.