authorgravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2023-11-26 00:13:38 -08:00
committergravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2023-11-26 00:13:38 -08:00
log70e5750a4061a1bc3767f98c6d81d8a0dd2afa3c
treec3daab2a692de99e35f07e4b7a37670009b11077
parent7b737ece760953a879eb95689551298fb541d3a3

add build.zig with test step


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

build.zig created+6
...@@ -0,0 +1,6 @@
1const std = @import("std");
2
3pub fn build(b: *std.build.Builder) void {
4 const test_step = b.step("test", "dummy test step to pass CI checks");
5 _ = test_step;
6}