authorgravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2023-11-26 00:10:20 -08:00
committergravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2023-11-26 00:10:20 -08:00
log3c9ea67da4b4eff8cb2f25d3681066360590f637
tree38efdce3def1d6b3f2cf1258e4ffec0cb2045840
parentd7c57401842aa50dac82c4de8105836f43ad6f6c

build.zig: rename run step to test


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

build.zig+1-1
......@@ -9,6 +9,6 @@ pub fn build(b: *std.build.Builder) void {
99
1010 const run_t = b.addRunArtifact(t);
1111
12 const t_step = b.step("run", "Run all the tests.");
12 const t_step = b.step("test", "Run all the tests.");
1313 t_step.dependOn(&run_t.step);
1414}