Skip to content

Commit

Permalink
update some for go action
Browse files Browse the repository at this point in the history
  • Loading branch information
inhere committed May 26, 2021
1 parent 4d25986 commit f736cbc
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ jobs:
- name: Get dependencies
run: |
go get -v -t -d ./...
go get github.com/mattn/goveralls
go get golang.org/x/tools/cmd/cover
# go get github.com/mattn/goveralls
# go get golang.org/x/tools/cmd/cover

- name: Run unit tests
# run: go test -v -cover ./...
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,5 @@

# Output of the go coverage tool, specifically when used with LiteIDE
*.out
*.cov
.DS_Store
2 changes: 1 addition & 1 deletion structs/tags.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ type TagParser struct {
Func func(tagVal string) map[string]string
}

// TODO for parse struct tags.
// ParseTags TODO for parse struct tags.
func ParseTags(v interface{}) error {
rv := reflect.ValueOf(v)
return ParseReflectTags(rv)
Expand Down

0 comments on commit f736cbc

Please sign in to comment.