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
