Open
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #5127 +/- ##
=======================================
Coverage 54.36% 54.36%
=======================================
Files 319 319
Lines 70786 70786
=======================================
Hits 38480 38480
Misses 30835 30835
Partials 1471 1471 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
estellesoulard
previously approved these changes
Nov 28, 2025
Contributor
There was a problem hiding this comment.
Pull request overview
Adds an AGENTS.md “Agent Development Guide” to document local setup, contribution workflow, project structure, command/test examples, and release/dependency practices for the Scaleway CLI.
Changes:
- Introduces a comprehensive developer guide (
AGENTS.md) covering environment setup and contribution workflow. - Documents repository architecture and conventions for commands/tests.
- Adds notes on linting, release process, and dependency management.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
You can also share your feedback on Copilot code review. Take the survey.
|
|
||
| ### Required Tools | ||
|
|
||
| Install the following tools to work on the provider: |
Comment on lines
+203
to
+212
| ArgsType: core.EmptyArgs, | ||
| ArgSpecs: core.ArgSpecs{ | ||
| { | ||
| Name: "name", | ||
| Short: 'n', | ||
| Required: true, | ||
| Default: core.DefaultValue("World"), | ||
| Positional: true, | ||
| }, | ||
| }, |
Comment on lines
+227
to
+230
| Run: func(ctx context.Context, argsI any) (i any, e error) { | ||
| args := argsI.(*sayHelloArgs) | ||
| return fmt.Sprintf("Hello %s!", args.Name), nil | ||
| }, |
| 1. **Run linting on changed files only** | ||
| ```bash | ||
| # Run on specific files/directories | ||
| golangci-lint run internal/services/account/... |
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.
Community Note
Relates OR Closes #0000
Release note for CHANGELOG: