bin: Adds test & upgrade-deps script, renames cover script.#23
bin: Adds test & upgrade-deps script, renames cover script.#23chris-ramon merged 2 commits intomainfrom
bin: Adds test & upgrade-deps script, renames cover script.#23Conversation
WalkthroughAdds two executable Bash scripts under Changes
Sequence Diagram(s)sequenceDiagram
autonumber
participant Dev as Developer
participant Sh as Shell
participant Go as Go Toolchain
Dev->>Sh: bin/test.sh
Sh->>Go: go clean -testcache
alt clean succeeds
Sh->>Go: go test ./...
Go-->>Sh: test results
else clean fails
Sh-->>Dev: exit with error
end
sequenceDiagram
autonumber
participant Dev as Developer
participant Sh as Shell
participant Go as Go Toolchain
Dev->>Sh: bin/upgrade-deps.sh
Sh->>Go: go list -m -u all
Sh->>Go: go get -u ./...
Sh->>Go: go mod tidy
Go-->>Sh: updated modules and tidy state
Sh-->>Dev: completion
Estimated code review effort🎯 2 (Simple) | ⏱️ ~10 minutes Poem
Pre-merge checks and finishing touches✅ Passed checks (3 passed)
✨ Finishing touches
🧪 Generate unit tests (beta)
📜 Recent review detailsConfiguration used: CodeRabbit UI Review profile: CHILL Plan: Pro 📒 Files selected for processing (1)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
|
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #23 +/- ##
=======================================
Coverage 86.23% 86.23%
=======================================
Files 4 4
Lines 109 109
=======================================
Hits 94 94
Misses 12 12
Partials 3 3
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
|
LGTM 👍 🚢 |
Details
bin: adds test & upgrade-deps script, renames cover script.Test Plan
✔️ Tested that new scripts works as expected.
Summary by CodeRabbit