Add test coverage for GitHub and fix JSON error

This commit is contained in:
Caelan Sayler
2024-01-08 10:58:49 +00:00
parent fe77e3cd28
commit 65bd274a7d
11 changed files with 239 additions and 35 deletions

View File

@@ -15,6 +15,9 @@ public static class PathHelper
public static string GetFixture(params string[] names)
=> Path.Combine(new string[] { GetTestRoot(), "fixtures" }.Concat(names).ToArray());
public static string GetTestRootPath(params string[] names)
=> Path.Combine(new string[] { GetTestRoot() }.Concat(names).ToArray());
public static string GetRustSrcDir()
=> Path.Combine(GetProjectDir(), "src", "Rust");