github.com/nektos/act@v0.2.63-0.20240520024548-8acde99bfa9c/pkg/container/executions_environment.go (about)

     1  package container
     2  
     3  import "context"
     4  
     5  type ExecutionsEnvironment interface {
     6  	Container
     7  	ToContainerPath(string) string
     8  	GetActPath() string
     9  	GetPathVariableName() string
    10  	DefaultPathVariable() string
    11  	JoinPathVariable(...string) string
    12  	GetRunnerContext(ctx context.Context) map[string]interface{}
    13  	// On windows PATH and Path are the same key
    14  	IsEnvironmentCaseInsensitive() bool
    15  }