From c2a8c972a17e62e3b8f78d68c37bee130c347611 Mon Sep 17 00:00:00 2001 From: haeyonghahn Date: Thu, 1 Feb 2024 21:56:51 +0900 Subject: [PATCH] =?UTF-8?q?Chore:=20Gradle=20Build=20Step=20=EC=B6=94?= =?UTF-8?q?=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/pull-request-test.yml | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pull-request-test.yml b/.github/workflows/pull-request-test.yml index 8d476d0..7b9f826 100644 --- a/.github/workflows/pull-request-test.yml +++ b/.github/workflows/pull-request-test.yml @@ -14,4 +14,15 @@ jobs: pull-requests: write steps: - name: Git Checkout - uses: actions/checkout@v3.0.2 \ No newline at end of file + uses: actions/checkout@v3.0.2 + + - name: JDK 설치 + uses: actions/setup-java@v3 + with: + java-version: 17 + distribution: zulu + cache: 'gradle' + + - name: Gradle Build + runs: | + ./gradlew build --parallel \ No newline at end of file