just scripts for checking if all is ok.

This commit is contained in:
fiatjaf
2023-10-02 09:14:09 -03:00
parent 553c7f245a
commit bc5c0aa4a1

17
justfile Normal file
View File

@@ -0,0 +1,17 @@
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