-
Notifications
You must be signed in to change notification settings - Fork 647
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix docs and add a validator tool for our api docs
- Loading branch information
1 parent
9169d8a
commit 9a79ce3
Showing
9 changed files
with
529 additions
and
175 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
*~ | ||
*.test | ||
*.test | ||
validator |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
all: checks | ||
|
||
checks: | ||
@go get -u github.com/go-ini/ini/... | ||
@go get -u github.com/minio/go-homedir/... | ||
@go get -u github.com/cheggaaa/pb/... | ||
@go get -u github.com/sirupsen/logrus/... | ||
@go get -u github.com/dustin/go-humanize/... | ||
@go vet ./... | ||
@SERVER_ENDPOINT=play.minio.io:9000 ACCESS_KEY=Q3AM3UQ867SPQQA43P2F SECRET_KEY=zuf+tfteSlswRu7BJ86wekitnifILbZam1KYY3TG ENABLE_HTTPS=1 go test -race -v ./... | ||
@SERVER_ENDPOINT=play.minio.io:9000 ACCESS_KEY=Q3AM3UQ867SPQQA43P2F SECRET_KEY=zuf+tfteSlswRu7BJ86wekitnifILbZam1KYY3TG ENABLE_HTTPS=1 go run functional_tests.go | ||
@mkdir /tmp/examples && for i in $(echo examples/s3/*); do go build -o /tmp/examples/$(basename ${i:0:-3}) ${i}; done | ||
@go get -u github.com/a8m/mark/... | ||
@go get -u github.com/minio/cli/... | ||
@go get -u golang.org/x/tools/cmd/goimports | ||
@go get -u github.com/gernest/wow/... | ||
@go build docs/validator.go && ./validator -m docs/API.md -t docs/checker.go.tpl |
Oops, something went wrong.