-
Notifications
You must be signed in to change notification settings - Fork 99
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Previously, this repository had a single `go.mod` file in the root and another hidden one in gotohelm's testdata. This meant that writing any tests for gotohelm would frequently require opening a new editor or LSP instance, which is annoying at best. This commit adds a `go.work` file to support a multi-module workspace. This allows working on gotohelm tests and gotohelm within the same editor/LSP.
- Loading branch information
Showing
7 changed files
with
285 additions
and
15 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
go 1.22.4 | ||
|
||
use ( | ||
. | ||
./pkg/gotohelm/testdata/src/example | ||
) |
Oops, something went wrong.