/
githubmirror
/
act
Обзор
Документация
Войти
/
githubmirror
/
act
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
pkg/container/executions_environment.go
15 строк
383 B
ChristopherHX
fix: environment handling windows (host mode) (#1732)
18 апр 2023, 21:09
Не верифицирован
18 апр 2023, 21:09
9884da0
Код
Авторство
О чём код?
package container import "context" type ExecutionsEnvironment interface { Container ToContainerPath(string) string GetActPath() string GetPathVariableName() string DefaultPathVariable() string JoinPathVariable(...string) string GetRunnerContext(ctx context.Context) map[string]interface{} // On windows PATH and Path are the same key IsEnvironmentCaseInsensitive() bool }