# Add any tasks that are not dependent on files to the .PHONY list.
.PHONY: ci_unit_lint

clean:
	rm -rf spec/rspec.xml spec/coverage

ci_unit_lint: clean
	docker compose run --rm --build --user $(shell id -u):$(shell id -g) lint-and-test
