.PHONY: ci_test_integration clean

clean:
	docker compose down --remove-orphans

ci_test_integration: clean
	docker compose up \
		--build \
		--exit-code-from integration-test \
		--abort-on-container-exit \
		--remove-orphans \
		integration-test
