Skip to content

Commit

Permalink
fix strikePrice type to float64
Browse files Browse the repository at this point in the history
add coverage.html
  • Loading branch information
jonwho committed Dec 16, 2020
1 parent a1cf2c1 commit 4f6eed2
Show file tree
Hide file tree
Showing 5 changed files with 4,003 additions and 16 deletions.
6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,16 @@ GOTOOL=$(GOCMD) tool
GOPHERBADGER=$(shell go env GOPATH)/bin/gopherbadger

.PHONY: all
all: test coverage
all: test cover coverage

.PHONY: test
test:
$(GOTEST) -v -cover -count=1 -mod=vendor

.PHONY: cover
cover:
$(GOTEST) ./... -coverprofile=coverage.out && $(GOTOOL) cover -html=coverage.out -o=coverage.html

.PHONY: coverage
coverage:
$(GOPHERBADGER) -md="README.md"
Expand Down
190 changes: 178 additions & 12 deletions cassettes/stock/options.yaml

Large diffs are not rendered by default.

Loading

0 comments on commit 4f6eed2

Please sign in to comment.