all repos — erl @ 6c854334bc9ee7338771dd0d034f3f48f0980674

Execute Reload Loop

justfile (view raw)

1
2
3
4
5
6
7
8
9
10
11
12
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