diff --git a/build.zig b/build.zig index 94c589f78784a2eada5a451be57a9a5700aa12c2..da34e3f14aba6228ec976fb3ccbf76f1c5f51fc1 100644 --- a/build.zig +++ b/build.zig @@ -9,6 +9,6 @@ pub fn build(b: *std.build.Builder) void { const run_t = b.addRunArtifact(t); - const t_step = b.step("run", "Run all the tests."); + const t_step = b.step("test", "Run all the tests."); t_step.dependOn(&run_t.step); }