Files
cs-codex-dist-tests/ProjectPlugins/DeployAndRunPlugin/CoreInterfaceExtensions.cs
T

14 lines
342 B
C#
Raw Normal View History

2023-10-31 11:15:08 +01:00
using Core;
2023-11-12 10:07:23 +01:00
using KubernetesWorkflow.Types;
2023-10-31 11:15:08 +01:00
namespace DeployAndRunPlugin
{
public static class CoreInterfaceExtensions
{
public static RunningContainer DeployAndRunContinuousTests(this CoreInterface ci, RunConfig runConfig)
{
return ci.GetPlugin<DeployAndRunPlugin>().Run(runConfig);
}
}
}