just scripts for checking if all is ok.
This commit is contained in:
@@ -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
|
||||||
Reference in New Issue
Block a user