scripts: fix go.mod file#4008
Merged
roman-khimov merged 1 commit intomasterfrom Sep 12, 2025
Merged
Conversation
Fix linter error introduced by #4006: ``` run golangci-lint Running [/home/runner/golangci-lint-1.64.8-linux-amd64/golangci-lint config path --config=/home/runner/work/neo-go/neo-go/nspcc-gh/.golangci.yml] in [/home/runner/work/neo-go/neo-go/scripts] ... Running [/home/runner/golangci-lint-1.64.8-linux-amd64/golangci-lint config verify --config=/home/runner/work/neo-go/neo-go/nspcc-gh/.golangci.yml] in [/home/runner/work/neo-go/neo-go/scripts] ... Running [/home/runner/golangci-lint-1.64.8-linux-amd64/golangci-lint run --path-prefix=scripts --config=/home/runner/work/neo-go/neo-go/nspcc-gh/.golangci.yml] in [/home/runner/work/neo-go/neo-go/scripts] ... level=warning msg="[runner] Can't run linter goanalysis_metalinter: buildssa: failed to load package rpcclient: could not load export data: no export data for \"github.com/nspcc-dev/neo-go/pkg/rpcclient\"" level=error msg="Running error: can't run linter goanalysis_metalinter\nbuildssa: failed to load package rpcclient: could not load export data: no export data for \"github.com/nspcc-dev/neo-go/pkg/rpcclient\"" ``` Upgrade NeoGo used by examples along with it. Signed-off-by: Anna Shaleva <shaleva.ann@nspcc.ru>
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #4008 +/- ##
==========================================
+ Coverage 82.00% 82.05% +0.04%
==========================================
Files 350 350
Lines 49889 49889
==========================================
+ Hits 40912 40935 +23
+ Misses 7248 7222 -26
- Partials 1729 1732 +3 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
roman-khimov
approved these changes
Sep 12, 2025
Member
roman-khimov
left a comment
There was a problem hiding this comment.
I had a thought that something might break in interops, but didn't notice any problems in CI.
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fix linter error introduced by #4006:
Upgrade NeoGo used by examples along with it.