authorgravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2023-11-26 00:09:46 -08:00
committergravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2023-11-26 00:09:46 -08:00
log2fd02135aa539a0aa7bfced6c1f4850ef783f0bb
treec646c10f946c8796af201a208a7712df0a898556
parentc6a69ffb6c5f953c68f86b3f5decdf27800d9298

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 {
2222
2323 const run_step = b.step("run", "Run the app");
2424 run_step.dependOn(&run_cmd.step);
25
26 const test_step = b.step("test", "dummy test step to pass CI checks");
27 _ = test_step;
2528}