-
Notifications
You must be signed in to change notification settings - Fork 287
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #147 from go-gota/dev
Release v0.11.0
- Loading branch information
Showing
13 changed files
with
1,345 additions
and
140 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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# IntelliJ | ||
.idea/ | ||
*.iml | ||
|
||
# vscode | ||
.vscode/ | ||
*.code-workspace |
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,3 +1,13 @@ | ||
language: go | ||
go: master | ||
script: go test -v ./dataframe ./series | ||
before_script: | ||
- echo 'Checking code quality issues.' | ||
- go vet ./... | ||
- echo 'Checking that gofmt was used.' | ||
- diff -u <(echo -n) <(gofmt -d .) | ||
- echo 'Checking tidiness of go mod.' | ||
- go mod tidy | ||
- test -z "$(git status --porcelain)" | ||
script: | ||
- echo 'Running tests.' | ||
- go test -v ./... |
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
Oops, something went wrong.