mirror of
https://github.com/nbd-wtf/go-nostr.git
synced 2025-03-18 05:42:20 +01:00
18 lines
376 B
Makefile
18 lines
376 B
Makefile
build-all:
|
|
#!/usr/bin/env bash
|
|
for dir in $(find . -maxdepth 1 -type d -name "nip*"); do
|
|
go build "./$dir"
|
|
done
|
|
go build ./
|
|
go build ./nson
|
|
go build ./binary
|
|
|
|
test-all:
|
|
#!/usr/bin/env bash
|
|
for dir in $(find . -maxdepth 1 -type d -name "nip*"); do
|
|
go test "./$dir"
|
|
done
|
|
go test ./
|
|
go test ./nson
|
|
go test ./binary
|