mirror of
https://github.com/nbd-wtf/go-nostr.git
synced 2025-03-17 21:32:56 +01:00
16 lines
333 B
Makefile
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
|