-
Notifications
You must be signed in to change notification settings - Fork 33
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
go work sync fix #1980
go work sync fix #1980
Conversation
Important Auto Review SkippedReview was skipped due to path filters Files ignored due to path filters (2)
WalkthroughThe recent updates encompass a variety of enhancements across the project, including workflow optimization for Go, linting improvements, the introduction of new equipment fields in the game's data model, the addition of a conditional test for RFQ services, and a code quality directive in the quoter logic. These changes aim to refine development practices, expand game functionality, and ensure robust testing, all while maintaining code readability and performance. Changes
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (invoked as PR comments)
Additionally, you can add CodeRabbit Configration File (
|
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #1980 +/- ##
============================================
Coverage ? 41.67902%
============================================
Files ? 157
Lines ? 12138
Branches ? 0
============================================
Hits ? 5059
Misses ? 6475
Partials ? 604 ☔ View full report in Codecov by Sentry. |
20754ed
to
b21053f
Compare
Qodana for GoIt seems all right 👌 No new problems were found according to the checks applied 💡 Qodana analysis was run in the pull request mode: only the changed files were checked Contact Qodana teamContact us at qodana-support@jetbrains.com
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Review Status
Actionable comments generated: 1
Configuration used: CodeRabbit UI
Files ignored due to path filters (37)
agents/go.mod
is excluded by:!**/*.mod
agents/go.sum
is excluded by:!**/*.sum
contrib/promexporter/go.mod
is excluded by:!**/*.mod
contrib/promexporter/go.sum
is excluded by:!**/*.sum
contrib/release-copier-action/go.mod
is excluded by:!**/*.mod
contrib/release-copier-action/go.sum
is excluded by:!**/*.sum
contrib/screener-api/go.mod
is excluded by:!**/*.mod
contrib/screener-api/go.sum
is excluded by:!**/*.sum
contrib/terraform-provider-helmproxy/go.mod
is excluded by:!**/*.mod
contrib/terraform-provider-helmproxy/go.sum
is excluded by:!**/*.sum
contrib/terraform-provider-iap/go.mod
is excluded by:!**/*.mod
contrib/terraform-provider-iap/go.sum
is excluded by:!**/*.sum
contrib/terraform-provider-kubeproxy/go.mod
is excluded by:!**/*.mod
contrib/terraform-provider-kubeproxy/go.sum
is excluded by:!**/*.sum
contrib/tfcore/go.mod
is excluded by:!**/*.mod
contrib/tfcore/go.sum
is excluded by:!**/*.sum
core/go.mod
is excluded by:!**/*.mod
core/go.sum
is excluded by:!**/*.sum
ethergo/go.mod
is excluded by:!**/*.mod
ethergo/go.sum
is excluded by:!**/*.sum
go.work.sum
is excluded by:!**/*.sum
services/cctp-relayer/go.mod
is excluded by:!**/*.mod
services/cctp-relayer/go.sum
is excluded by:!**/*.sum
services/explorer/go.mod
is excluded by:!**/*.mod
services/explorer/go.sum
is excluded by:!**/*.sum
services/omnirpc/go.mod
is excluded by:!**/*.mod
services/omnirpc/go.sum
is excluded by:!**/*.sum
services/rfq/go.mod
is excluded by:!**/*.mod
services/rfq/go.sum
is excluded by:!**/*.sum
services/scribe/go.mod
is excluded by:!**/*.mod
services/scribe/go.sum
is excluded by:!**/*.sum
services/sinner/go.mod
is excluded by:!**/*.mod
services/sinner/go.sum
is excluded by:!**/*.sum
services/stiprelayer/go.mod
is excluded by:!**/*.mod
services/stiprelayer/go.sum
is excluded by:!**/*.sum
tools/go.mod
is excluded by:!**/*.mod
tools/go.sum
is excluded by:!**/*.sum
Files selected for processing (7)
- .github/workflows/go.yml (1 hunks)
- .github/workflows/scan.yml (3 hunks)
- .golangci.yml (1 hunks)
- README.md (1 hunks)
- contrib/promexporter/internal/gql/dfk/models.gen.go (1 hunks)
- services/rfq/e2e/rfq_test.go (1 hunks)
- services/rfq/relayer/quoter/quoter.go (1 hunks)
Files skipped from review as they are similar to previous changes (5)
- .github/workflows/go.yml
- .golangci.yml
- contrib/promexporter/internal/gql/dfk/models.gen.go
- services/rfq/e2e/rfq_test.go
- services/rfq/relayer/quoter/quoter.go
Additional comments: 3
.github/workflows/scan.yml (2)
- 1-1: Rename workflow from "SonarCloud" to "Code Scan" is clear and aligns with the added scanning capabilities.
- 28-31: Adding "Qodana Scan" step is appropriate for enhancing code quality checks. Ensure
QODANA_TOKEN
is securely stored in GitHub Secrets.README.md (1)
- 14-14: Adding the Codacy Badge to the README.md file is a good practice for showcasing code quality metrics.
# permissions: | ||
# contents: write | ||
# pull-requests: write | ||
# checks: write |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Permissions are commented out. If these permissions are necessary for the workflow, they should be uncommented and properly configured.
-# permissions:
-# contents: write
-# pull-requests: write
-# checks: write
+ permissions:
+ contents: write
+ pull-requests: write
+ checks: write
Committable suggestion
‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation.
# permissions: | |
# contents: write | |
# pull-requests: write | |
# checks: write | |
permissions: | |
contents: write | |
pull-requests: write | |
checks: write |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Review Status
Actionable comments generated: 0
Configuration used: CodeRabbit UI
Files ignored due to path filters (1)
qodana.yaml
is excluded by:!**/*.yaml
Files selected for processing (2)
- .codeclimate.yml (1 hunks)
- .github/workflows/scan.yml (3 hunks)
Files skipped from review due to trivial changes (1)
- .codeclimate.yml
Files skipped from review as they are similar to previous changes (1)
- .github/workflows/scan.yml
Description
Fixes go work sync (golang/go#65363) by manually replacing references to the broken dependency
Summary by CodeRabbit
New Features
Tests
Chores