Skip to content

Commit cc7fbd9

Browse files
author
root28root
committed
tools: add repo-wide compile+test script
1 parent d8e13f2 commit cc7fbd9

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

tools/check.sh

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#!/usr/bin/env bash
2+
set -euo pipefail
3+
projects=("mytoken" "escrow" "simplenft" "minimarket")
4+
for p in "${projects[@]}"; do
5+
echo "===> '$p'"
6+
(cd "$p" && aptos move clean && aptos move compile && aptos move test --filter .)
7+
done
8+
echo "OK: all projects built & tests passed"

0 commit comments

Comments
 (0)