From 83c242cd9a301c301fec6d15314253c6a3f997f3 Mon Sep 17 00:00:00 2001 From: Jon Langevin Date: Tue, 19 May 2026 14:22:09 -0400 Subject: [PATCH] docs(tofu): 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 b379f0d..1198787 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-tofu.git cd workflow-plugin-tofu -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