-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
OPCT-226: cmd/report UX enhancements for CLI and Web report
The report feature introduces several improvements in the UX while reviewing the report by: - creationg an intuitive HTML report allowing users to quickly see issues and navigate to the logs for each test failure - introduce several gates/SLO/checks to be used as post-processor and get better visibility in the results, based in existing knowledge base/CI data or external ssytems - providing a better CLI UI exploring results See the PR with details of improvements: #76
- Loading branch information
Showing
82 changed files
with
9,096 additions
and
2,062 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
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,51 @@ | ||
--- | ||
name: reviewer | ||
|
||
on: | ||
workflow_call: {} | ||
|
||
# golangci-lint-action requires those permissions to annotate issues in the PR. | ||
permissions: | ||
contents: read | ||
checks: write | ||
issues: read | ||
pull-requests: write | ||
|
||
env: | ||
GO_VERSION: 1.22 | ||
GOLANGCI_LINT_VERSION: v1.59 | ||
|
||
jobs: | ||
# reviewdog / misspell: https://github.com/reviewdog/action-misspell | ||
misspell: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: reviewdog/action-misspell@v1 | ||
with: | ||
github_token: ${{ secrets.github_token }} | ||
reporter: github-pr-review | ||
# level: warning | ||
locale: "US" | ||
|
||
# reviewdog / suggester: https://github.com/reviewdog/action-suggester | ||
go_fmt: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- run: gofmt -w -s . | ||
- uses: reviewdog/action-suggester@v1 | ||
with: | ||
tool_name: gofmt | ||
|
||
# https://github.com/reviewdog/action-hadolint | ||
# containerfile: | ||
# name: runner / hadolint | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - name: Check out code | ||
# uses: actions/checkout@v4 | ||
# - name: hadolint | ||
# uses: reviewdog/action-hadolint@v1 | ||
# with: | ||
# reporter: github-pr-review |
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
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.