Add a note about gradle checks being possibly a subset of all validation checks. (#11966)

This commit is contained in:
Dawid Weiss 2022-11-23 12:19:28 +01:00 committed by GitHub
parent 802774641a
commit 326142c485
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 1 deletions

View File

@ -12,10 +12,15 @@ Run all unit tests:
gradlew test
Run all verification tasks, including tests:
Run all(*) verification tasks, including tests:
gradlew check
(*) This step may omit certain validation tasks (errorprone, for example)
that are slow or require external resources. A pull request runs all
those locally omitted tasks on the CI (jenkins, gh actions).
For this reason, it's a good idea to run patches via the CI.
Run all verification tasks, excluding tests (-x is gradle's generic task
exclusion mechanism):