From c5463264123ed077bfc203fc77b1ad6e36e408da Mon Sep 17 00:00:00 2001 From: Slug-Boi Date: Mon, 28 Oct 2024 18:52:11 +0100 Subject: [PATCH] ci: add env var to build test workflow --- ci/build_test_release.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/build_test_release.go b/ci/build_test_release.go index 47a615f..9eda0df 100644 --- a/ci/build_test_release.go +++ b/ci/build_test_release.go @@ -38,7 +38,7 @@ func main() { WithExec([]string{"go", "mod", "tidy"}) // run application tests - test := runner.WithWorkdir("/src/src_code/go_src").WithExec([]string{"go", "test", "./..."}) + test := runner.WithWorkdir("/src/src_code/go_src").WithExec([]string{"go", "test", "./..."}).WithEnvVariable("CI", "true") buildDir := test.Directory("/src/")