From aa3a9653bb21dec127a8a1297684d89d6f17596d Mon Sep 17 00:00:00 2001 From: Jared Miller Date: Thu, 4 Dec 2025 18:39:11 -0500 Subject: [PATCH] Add a default build and test to justfile --- justfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/justfile b/justfile index 90b2629..b1f5238 100644 --- a/justfile +++ b/justfile @@ -1,6 +1,10 @@ # use bash set shell := ["bash", "-c"] +default: + @just build + @just test + build: zig build