From a744d54d3b8d80937e8e8db40c1b1d0e0634b493 Mon Sep 17 00:00:00 2001 From: Meghan Denny Date: Sun, 26 Nov 2023 00:14:42 -0800 Subject: [PATCH] build.zig: add test step --- build.zig | 3 +++ 1 file changed, 3 insertions(+) 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; } -- 2.54.0