Files
act_runner/pkg/runner/run_context_other.go
2025-04-25 21:58:30 +02:00

17 lines
267 B
Go

//go:build !darwin
package runner
import (
"context"
"fmt"
"github.com/actions-oss/act-cli/pkg/common"
)
func (rc *RunContext) startTartEnvironment() common.Executor {
return func(_ context.Context) error {
return fmt.Errorf("you need macOS for tart")
}
}