package test import ( "testing" "github.com/xlgmokha/x/pkg/env" ) func isGitlabCI(t *testing.T) bool { t.Logf("CI? %v\n", env.Fetch("CI", "")) return env.Fetch("CI", "") == "true" }