.PHONY: build build_test lint_and_test integration_test

build:
	docker compose build function

build_test:
	docker compose build lint-and-test

lint_and_test:
	docker compose run --rm lint-and-test

integration_test:
	echo "Not implemented yet"
