go-nostr/justfile
2023-11-02 16:04:23 -03:00

16 lines
333 B
Makefile

build-all:
#!/usr/bin/env fish
for dir in (find . -maxdepth 1 -type d -name "nip*")
go build "./$dir"
end
go build ./nson
go build ./binary
test-all:
#!/usr/bin/env fish
for dir in (find . -maxdepth 1 -type d -name "nip*")
go test "./$dir"
end
go test ./nson
go test ./binary