authorgravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2023-11-26 00:15:26 -08:00
committergravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2023-11-26 00:15:26 -08:00
log79dd0905527cfca5b48beedefcae394f58d9e5e6
tree827a53e34dfb53bfa16ca9ccef7434f4812addc7
parent3a9fe5b7e6d943be21527b71cdaf8feb122365f5

build.zig: add test step


1 files changed, 3 insertions(+), 0 deletions(-)

build.zig+3
...@@ -23,4 +23,7 @@ pub fn build(b: *std.build.Builder) void {...@@ -23,4 +23,7 @@ pub fn build(b: *std.build.Builder) void {
2323
24 const run_step = b.step("run", "Run the app");24 const run_step = b.step("run", "Run the app");
25 run_step.dependOn(&run_cmd.step);25 run_step.dependOn(&run_cmd.step);
26
27 const test_step = b.step("test", "dummy test step to pass CI checks");
28 _ = test_step;
26}29}