From 79dd0905527cfca5b48beedefcae394f58d9e5e6 Mon Sep 17 00:00:00 2001 From: Meghan Denny Date: Sun, 26 Nov 2023 00:15:26 -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 d550dfa47fc261b4887210a1070a0781bc3d6609..ae3f9887b3b00978cdadc9d90a5a081402a5dd85 100644 --- a/build.zig +++ b/build.zig @@ -23,4 +23,7 @@ pub fn build(b: *std.build.Builder) 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