authorgravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2023-11-26 00:14:42 -08:00
committergravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2023-11-26 00:14:42 -08:00
loga744d54d3b8d80937e8e8db40c1b1d0e0634b493
treed4cff7d85392eab5b6326a1ae9267999eab5baad
parentf130e021ffdfcfb3b44fba8f256bddc4375832e7

build.zig: add test step


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

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