From 8260393d48ea195475032f4a43339ffea3a99bcd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomasz=20Grze=C5=9Bkiewicz?= Date: Tue, 12 Dec 2023 01:31:49 +0100 Subject: [PATCH] fix: removing sqlx check from pre-push (#658) 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. --- .githooks/pre-push | 6 ------ 1 file changed, 6 deletions(-) diff --git a/.githooks/pre-push b/.githooks/pre-push index 94cc937c9b1..25312c14c10 100755 --- a/.githooks/pre-push +++ b/.githooks/pre-push @@ -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