-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(log): format non-verbose result in table-style format (#87)
* feat(log): format non-verbose result in table-style format * feat: use default logger for logging result * test: write unit test for new console logger
- Loading branch information
Showing
8 changed files
with
221 additions
and
59 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 @@ | ||
vendor |
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,9 +1,10 @@ | ||
module github.com/Namchee/conventional-pr | ||
|
||
go 1.16 | ||
|
||
require ( | ||
github.com/google/go-github/v32 v32.1.0 | ||
github.com/stretchr/testify v1.7.0 | ||
golang.org/x/oauth2 v0.0.0-20200902213428-5d25da1a8d43 | ||
) | ||
module github.com/Namchee/conventional-pr | ||
|
||
go 1.16 | ||
|
||
require ( | ||
github.com/google/go-github/v32 v32.1.0 | ||
github.com/jedib0t/go-pretty/v6 v6.4.6 // indirect | ||
github.com/stretchr/testify v1.7.4 | ||
golang.org/x/oauth2 v0.0.0-20200902213428-5d25da1a8d43 | ||
) |
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
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.