go-nostr/justfile

16 lines
333 B
Makefile
Raw Permalink Normal View History

build-all:
#!/usr/bin/env fish
for dir in (find . -maxdepth 1 -type d -name "nip*")
go build "./$dir"
end
2023-11-02 15:29:27 -03:00
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
2023-11-02 15:29:27 -03:00
go test ./nson
go test ./binary