Skip to content

Commit

Permalink
fix: removing sqlx check from pre-push (matter-labs#658)
Browse files Browse the repository at this point in the history
Removing this check for now, I will re-add is as an opt-in check,
probably with other checks bundled in. It's best not to require built
project on every push.
  • Loading branch information
tomg10 authored Dec 12, 2023
1 parent 5c1aea2 commit 8260393
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions .githooks/pre-push
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,3 @@ if ! zk fmt --check; then
echo "Please format the code via 'zk fmt', cannot push unformatted code"
exit 1
fi

if ! zk db check-sqlx-data; then
echo -e "${RED}Push error!${NC}"
echo "Please update sqlx-data.json via 'zk db setup', cannot push invalid sqlx-data.json file"
exit 1
fi

0 comments on commit 8260393

Please sign in to comment.