From 67eee8a43bbef5c6f4b3c5a775a39e2c92c7fb8a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edd=C3=BA=20Mel=C3=A9ndez?= Date: Fri, 6 Dec 2024 16:01:08 -0600 Subject: [PATCH] Enable tests on PRs It only executes unit tests. Checkstyle and Spring Java Format are executed. --- .../{source-code-format-check.yml => pr-check.yml} | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) rename .github/workflows/{source-code-format-check.yml => pr-check.yml} (77%) diff --git a/.github/workflows/source-code-format-check.yml b/.github/workflows/pr-check.yml similarity index 77% rename from .github/workflows/source-code-format-check.yml rename to .github/workflows/pr-check.yml index 2143224c357..eeaa6579a2f 100644 --- a/.github/workflows/source-code-format-check.yml +++ b/.github/workflows/pr-check.yml @@ -1,4 +1,4 @@ -name: Source Code Format +name: PR Check on: pull_request: @@ -20,6 +20,6 @@ jobs: distribution: 'temurin' cache: 'maven' - - name: Source code formatting check + - name: Run tests run: | - ./mvnw spring-javaformat:validate + ./mvnw test