codeclimate/sonar-wrapper

View on GitHub
Makefile

Summary

Maintainability
Test Coverage
.PHONY: image test

IMAGE_NAME ?= codeclimate/sonar-wrapper

image:
    docker build --rm -t $(IMAGE_NAME) .

test: image
    docker run --rm -ti -w /usr/src/app -u root $(IMAGE_NAME) gradle clean test