mirror of
https://github.com/logos-storage/logos-storage-nim-cs-dist-tests.git
synced 2026-01-02 21:43:08 +00:00
14 lines
342 B
C#
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);
|
|
}
|
|
}
|
|
}
|