2
0
mirror of synced 2025-01-11 00:56:05 +00:00
2023-11-12 10:07:23 +01:00

14 lines
342 B
C#

using Core;
using KubernetesWorkflow.Types;
namespace DeployAndRunPlugin
{
public static class CoreInterfaceExtensions
{
public static RunningContainer DeployAndRunContinuousTests(this CoreInterface ci, RunConfig runConfig)
{
return ci.GetPlugin<DeployAndRunPlugin>().Run(runConfig);
}
}
}