We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 57e7cfd + 3750f53 commit 9d99d3aCopy full SHA for 9d99d3a
Makefile
@@ -66,8 +66,11 @@ test-buildpacks:
66
test-dockerfiles:
67
ginkgo --focus="all dockerfile apps" tests
68
69
-docker-test-style:
70
- docker run --rm -v ${CURDIR}:/bash -w /bash quay.io/deis/shell-dev shellcheck *.sh
+test: test-style
+
71
+test-style:
72
+ docker run --rm -v ${CURDIR}:/bash -w /bash \
73
+ quay.io/deis/shell-dev shellcheck $(wildcard *.sh)
74
75
docker-build:
76
docker build -t ${IMAGE} ${CURDIR}
@@ -89,7 +92,8 @@ docker-test-integration:
89
92
bootstrap \
90
93
docker-bootstrap \
91
94
test-integration \
- docker-test-style \
95
+ test \
96
+ test-style \
97
docker-build \
98
docker-push \
99
docker-immutable-push \
0 commit comments