From ead57a21bcec48f7238f3018e47414960affec15 Mon Sep 17 00:00:00 2001 From: Meghan Denny Date: Sun, 26 Nov 2023 00:08:32 -0800 Subject: [PATCH] build.zig: add test step --- build.zig | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build.zig b/build.zig index 73371a1ff76ebd770bfa2c252012fa9a00215067..1f876da4064d4e9e8cb2d1cb58b475ec52f3053f 100644 --- a/build.zig +++ b/build.zig @@ -24,4 +24,7 @@ pub fn build(b: *std.Build) void { const run_step = b.step("run", "Run the app"); run_step.dependOn(&run_cmd.step); + + const test_step = b.step("test", "dummy test step to pass CI checks"); + _ = test_step; } -- 2.54.0