diff --git a/build.zig b/build.zig index c4c7ebb2b5211be5e030eb7dd58f619e06b45949..d2c7858fd52539cf6b27571d8a4e75208c669dd2 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; }