Skip to content

Commit

Permalink
refactor: 성능 측정을 위한 gradle 캐싱 주석 처리
Browse files Browse the repository at this point in the history
  • Loading branch information
lilychoibb committed Jul 24, 2024
1 parent acbe007 commit 36f63a8
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/backend_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,15 @@ jobs:
server-id: github # Value of the distributionManagement/repository/id field of the pom.xml
settings-path: ${{ github.workspace }} # location for the settings.xml file

- name: Gradle Caching
uses: actions/cache@v3
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
restore-keys: |
${{ runner.os }}-gradle-
# - name: Gradle Caching
# uses: actions/cache@v3
# with:
# path: |
# ~/.gradle/caches
# ~/.gradle/wrapper
# key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
# restore-keys: |
# ${{ runner.os }}-gradle-

- name: Setup Gradle
run: chmod +x ./backend/gradlew
Expand Down
2 changes: 1 addition & 1 deletion backend/src/main/java/develup/api/AuthApi.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

@RestController
public class AuthApi {

//테스트
private final GithubOAuthService githubOAuthService;
private final MemberService memberService;
private final AuthService authService;
Expand Down

0 comments on commit 36f63a8

Please sign in to comment.