all repos — erl @ c8ab7c849959313a035bf9e448d110e794190a4f

Execute Reload Loop

initial commit

Alan Pearce
commit

c8ab7c849959313a035bf9e448d110e794190a4f

1 file changed, 13 insertions(+), 0 deletions(-)

changed files
A justfile
@@ -0,0 +1,13 @@
+run *args: + go run main.go {{ args }} + +test *tests="./...": + go test {{ tests }} + +build: + go build + +nix-build: + nix build . + +ci: test build nix-build