mirror of
https://github.com/coder/coder.git
synced 2025-03-15 10:08:13 +00:00
11 lines
97 B
Go
11 lines
97 B
Go
package testutil
|
|
|
|
import (
|
|
"os"
|
|
)
|
|
|
|
func InCI() bool {
|
|
_, ok := os.LookupEnv("CI")
|
|
return ok
|
|
}
|