pre-push-hook: run tests on push (#1653)

This commit is contained in:
Harsh Shandilya 2022-01-09 15:16:51 +05:30 committed by GitHub
parent 910212b3ae
commit 6c6ade85a8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -9,6 +9,6 @@ GRADLE_EXEC="${GRADLE_EXEC:-./gradlew}"
while read local_ref local_oid remote_ref remote_oid; do
if [ "${local_oid}" != "${ZERO}" ]; then
"${GRADLE_EXEC}" spotlessCheck apiCheck
"${GRADLE_EXEC}" spotlessCheck apiCheck test -PslimTests
fi
done