From 26c5d34b1e301e7ef289d6f06d5dcde6c049313a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ingy=20d=C3=B6t=20Net?= Date: Sun, 3 Nov 2024 08:35:53 -0800 Subject: [PATCH] Add support for the YAMLScript language (#1165) Co-authored-by: Glenn Jackman --- workspace/test_configurations.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/workspace/test_configurations.go b/workspace/test_configurations.go index a1fe1cccb..90a7a1670 100644 --- a/workspace/test_configurations.go +++ b/workspace/test_configurations.go @@ -270,6 +270,9 @@ var TestConfigurations = map[string]TestConfiguration{ "x86-64-assembly": { Command: "make", }, + "yamlscript": { + Command: "make test", + }, "zig": { Command: "zig test {{test_files}}", },