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