go-nostr/justfile
2023-10-02 09:14:09 -03:00

18 lines
392 B
Makefile

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