There was an error while loading. Please reload this page.
1 parent 31500cf commit 03847a7Copy full SHA for 03847a7
1 file changed
.github/workflows/move-ci.yml
@@ -20,5 +20,11 @@ jobs:
20
echo "$HOME/.local/bin" >> $GITHUB_PATH
21
aptos --version
22
23
+- name: Static sanity checks
24
+ run: |
25
+ set -euo pipefail
26
+ ! grep -RIn "{{ADDR}}" -- . || (echo "ERROR: found {{ADDR}} placeholders" && exit 1)
27
+ ! grep -RIn "use std::" -- . || (echo "ERROR: found std:: imports; use 0x1::" && exit 1)
28
+
29
- name: Repo-wide build & tests
30
run: ./tools/check.sh
0 commit comments