From eea348ed0d8dd4a692e219dd5e1f69093182e844 Mon Sep 17 00:00:00 2001 From: Jon Langevin Date: Tue, 19 May 2026 14:21:56 -0400 Subject: [PATCH] docs(aws): prefix CONTRIBUTING commands with GOWORK=off Follow-up to workflow#721. Multi-repo workspace go.work short-circuits plugin builds unless GOWORK=off is set. Co-Authored-By: Claude Opus 4.7 (1M context) --- CONTRIBUTING.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index cdddc97..b7ebf67 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -11,8 +11,8 @@ Read the [upstream CONTRIBUTING.md](https://github.com/GoCodeAlone/workflow/blob ```sh git clone https://github.com/GoCodeAlone/workflow-plugin-aws.git cd workflow-plugin-aws -go build ./... -go test ./... +GOWORK=off go build ./... +GOWORK=off go test ./... ``` ## Pull requests @@ -20,7 +20,7 @@ go test ./... - One feature or bugfix per PR. - Update CHANGELOG.md with a Keep-a-Changelog entry. - Add tests covering new behavior. -- Run `go vet ./...` before pushing. +- Run `GOWORK=off go vet ./...` before pushing. ## Reporting issues