Go: Add integration test for resolve build-environment

This commit is contained in:
Michael B. Gale
2024-04-17 15:35:22 +01:00
parent eb2e587637
commit 7cf61ffb18
4 changed files with 16 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
{
"configuration" : {
"go" : {
"version" : "1.22"
}
}
}

View File

@@ -0,0 +1,3 @@
go 1.22
module main

View File

@@ -0,0 +1,3 @@
package main
func Main() {}

View File

@@ -0,0 +1,3 @@
from go_integration_test import *
go_integration_test(toolchain="go1.21.0")