Skip to content

Commit

Permalink
Merge pull request #2 from planetscale/makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
joemiller authored Mar 11, 2023
2 parents 7a600b4 + 44e0fb5 commit 2bcfa8f
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 2bcfa8f

Please sign in to comment.