Skip to content

Commit

Permalink
Merge pull request #46 from smcquay/response
Browse files Browse the repository at this point in the history
Enable http status code propagation

ʕ◔ϖ◔ʔ
  • Loading branch information
smcquay authored Oct 16, 2017
2 parents 0730ea2 + 8c6fdc4 commit 9440c28
Show file tree
Hide file tree
Showing 42 changed files with 2,020 additions and 1,005 deletions.
14 changes: 7 additions & 7 deletions Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ BIN_DIR := $(GOPATH)/bin
GOLINT := $(BIN_DIR)/golint
PGG := $(BIN_DIR)/protoc-gen-go
GBD := $(BIN_DIR)/go-bindata
PKGS := $(shell go list ./... | grep -v vendor)
PKGS := $(shell go list ./... | grep -v vendor | grep -v ui$ | grep -v templates$ )
BINARY := $(BIN_DIR)/bin/eventmaster

VERSION := $(shell git describe --tags 2> /dev/null || echo "unreleased")
Expand All @@ -25,12 +25,12 @@ proto/eventmaster.pb.go: $(PGG) proto/eventmaster.proto

.PHONY: test
test: deps proto/eventmaster.pb.go ui/ui.go templates/templates.go
@go test ${PGKS}
@go test -cover ${PKGS}

.PHONY: lint
lint: deps $(GOLINT)
@go vet .
@golint -set_exit_status .
@go vet ${PKGS}
@golint -set_exit_status ${PKGS}

# TODO: golint and protoc-gen-go are fetched from master still; should pin them down.
$(GOLINT):
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,4 +94,4 @@ $ make test

## REST API

This is documented in the [api subdirectory](./api/).
This is documented in the [documentation subdirectory](./docs/api/).
Loading

0 comments on commit 9440c28

Please sign in to comment.