Skip to content

Commit

Permalink
add makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
joemiller committed Mar 11, 2023
1 parent fcdcc3e commit 44e0fb5
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
lint-shellcheck:
@docker compose run --rm lint-shellcheck

lint-plugin:
@docker compose run --rm lint-plugin

lint: lint-plugin lint-shellcheck

test:
@docker compose run --rm tests
@echo "run 'make clean' to stop and remove test containers"

clean:
@docker compose down

.DEFAULT_GOAL: test

.PHONY: lint test clean
.PHONY: lint-shellcheck lint-plugin

0 comments on commit 44e0fb5

Please sign in to comment.