Skip to content

Commit

Permalink
New updates
Browse files Browse the repository at this point in the history
  • Loading branch information
JoseAngel1196 committed Feb 19, 2024
1 parent f4c519a commit 744d2b8
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,6 @@ config.toml

# VS code
.vscode

# Test
coverage*
5 changes: 5 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
.PHONY: test
test:
go test -race -coverprofile=coverage.out ./...
go tool cover -html=coverage.out -o coverage.html
go tool cover -func=coverage.out
2 changes: 1 addition & 1 deletion reporting/slack.go
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ func (s *SlackReporter) BuildTeamReport(
),
slack.NewDividerBlock(),
slack.NewContextBlock("", slack.NewTextBlockObject(
slack.PlainTextType, reportTime.Format(time.RFC1123), false, false,
slack.PlainTextType, reportTime.Format(DATE_LAYOUT), false, false,
)),
slack.NewSectionBlock(
nil,
Expand Down

0 comments on commit 744d2b8

Please sign in to comment.