From 94363e88c6ec06c91f424aeababd36b46e4155ac Mon Sep 17 00:00:00 2001 From: Gleb Date: Mon, 26 Aug 2024 15:23:34 -0700 Subject: [PATCH] Fix pipeline --- .github/workflows/basic_test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/basic_test.yml b/.github/workflows/basic_test.yml index f2fd00c4..810f13a1 100644 --- a/.github/workflows/basic_test.yml +++ b/.github/workflows/basic_test.yml @@ -19,7 +19,7 @@ jobs: distribution: 'adopt' - name: Check code formatting - run: ./gradlew spotlessCheck || echo "❌ Your code is not properly formatted. You can run './gradlew spotlessApply' to format it. 👀" + run: ./gradlew spotlessCheck || (echo "❌ Your code is not properly formatted. You can run './gradlew spotlessApply' to format it. 👀" && exit 1) - name: Detekt run: ./gradlew detekt