authorgravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2025-02-15 22:10:18 -08:00
committergravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2025-02-15 22:10:18 -08:00
log2836d9ba610576cecebefd2c780ad1b1204a4b5a
tree9cd07e46b3f11471c32e852086a31e95779238b4
parent8c7f18e7621b860a9d95202c05f8c277c591ed2b

sync test step description


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

build.zig+1-1
...@@ -18,6 +18,6 @@ pub fn build(b: *std.Build) void {...@@ -18,6 +18,6 @@ pub fn build(b: *std.Build) void {
18 const run_t = b.addRunArtifact(t);18 const run_t = b.addRunArtifact(t);
19 run_t.has_side_effects = true;19 run_t.has_side_effects = true;
2020
21 const t_step = b.step("test", "Run all the tests.");21 const t_step = b.step("test", "Run all library tests");
22 t_step.dependOn(&run_t.step);22 t_step.dependOn(&run_t.step);
23}23}