From 7da5360d344d31604159268a7ff1a0589ab7b525 Mon Sep 17 00:00:00 2001 From: tae0y Date: Wed, 11 Dec 2024 14:23:30 +0900 Subject: [PATCH] =?UTF-8?q?update=20:=20=EA=B9=83=ED=97=99=20=EC=95=A1?= =?UTF-8?q?=EC=85=98=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/maven.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index bd66510..7638f7c 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -33,5 +33,16 @@ jobs: distribution: 'temurin' cache: maven + - name: Cache Maven dependencies + uses: actions/cache@v3 + with: + path: ~/.m2/repository + key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} + restore-keys: | + ${{ runner.os }}-maven- + + - name : Install Dependencies only + run: mvn -B -DskipTests=true + - name : Run unit tests run: mvn -B test \ No newline at end of file