Skip to content

Commit

Permalink
nson and binary on justfile.
Browse files Browse the repository at this point in the history
  • Loading branch information
fiatjaf committed Nov 2, 2023
1 parent 4c72e16 commit e2b4f70
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions justfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
build-all:
#!/usr/bin/env fish
for dir in (find . -maxdepth 1 -type d -name "nip*")
echo "building $dir"
go build "./$dir"
end
go build ./nson
go build ./binary
test-all:
#!/usr/bin/env fish
for dir in (find . -maxdepth 1 -type d -name "nip*")
echo "testing $dir"
go test "./$dir"
end
go test ./nson
go test ./binary

0 comments on commit e2b4f70

Please sign in to comment.