all repos — erl @ 5b2e1e8a6dcdc5b7201d16efb9190ff49ed39564

Execute Reload Loop

justfile (view raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
run *args="--exec sleep 10s":
  go run main.go {{ args }}

test *tests="./...":
	go test {{ tests }}

build:
	go build

nix-build:
	nix build .

ci: test build nix-build