diff options
| author | mattjmcnaughton <mattjmcnaughton@gmail.com> | 2019-02-06 15:08:34 -0500 |
|---|---|---|
| committer | mattjmcnaughton <mattjmcnaughton@gmail.com> | 2019-02-06 15:08:34 -0500 |
| commit | eaba91741eda94426488a98c4a86752f4e6eac48 (patch) | |
| tree | e3855da191300f4e177ad3d72b124005397e0dc6 | |
| parent | cadd7bee53170d20b9db4a8a29192db0879fcd81 (diff) | |
Add `verify-dockerized` to Makefile
The `Makefile` has `generate-dockerized` and `test-dockerized`. For
consistency, and also because its helpful for those who may not have
their Go environment properly setup, add `verify-dockerized` to the
Dockerfile. Its responsible for running `verify` in the docker
container.
| -rw-r--r-- | Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -15,6 +15,9 @@ generate-dockerized: verify: @hack/verify.sh +verify-dockerized: + docker run --rm -v $(shell pwd):/go/src/app:Z $(IMAGE_NAME) make -C /go/src/app verify + test: go test -v ./generator/... |
