diff --git a/build.zig b/build.zig index 636477d8a9a8b8caaa3bac4c156dcc797f9042d7..cae4d7390fceaf8e4a47084b57e6ec4126b5e803 100644 --- a/build.zig +++ b/build.zig @@ -22,4 +22,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; }