mirror of
https://github.com/nbd-wtf/go-nostr.git
synced 2025-11-15 16:50:16 +01:00
just scripts for checking if all is ok.
This commit is contained in:
17
justfile
Normal file
17
justfile
Normal 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
|
||||
Reference in New Issue
Block a user