From 7fc1fa04794bc30ee8726919baf31e6360b65e76 Mon Sep 17 00:00:00 2001 From: Chris Bono Date: Tue, 23 Apr 2024 13:45:01 -0500 Subject: [PATCH] [CI] Add short-circuiting checkFormat step ci-pr --- .github/workflows/ci-pr.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci-pr.yml b/.github/workflows/ci-pr.yml index 68a84865..1d5a3bcc 100644 --- a/.github/workflows/ci-pr.yml +++ b/.github/workflows/ci-pr.yml @@ -37,6 +37,9 @@ jobs: steps: - uses: actions/checkout@v3 - uses: spring-io/spring-gradle-build-action@v2 + - name: Check format (short circuit) + run: | + ./gradlew checkFormat - name: Build and run unit tests run: | ./gradlew clean build -x integrationTest --continue --scan