go-nostr/justfile

18 lines
392 B
Makefile
Raw Permalink Normal View History

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