Skip to content

Commit

Permalink
update : 깃헙 액션 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
tae0y committed Dec 11, 2024
1 parent e98f3a8 commit 7da5360
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 7da5360

Please sign in to comment.