File tree Expand file tree Collapse file tree 1 file changed +26
-26
lines changed Expand file tree Collapse file tree 1 file changed +26
-26
lines changed Original file line number Diff line number Diff line change @@ -40,32 +40,32 @@ jobs:
4040 # ---------------------------------------------------------
4141 # 1) 테스트
4242 # ---------------------------------------------------------
43- test :
44- runs-on : ubuntu-latest
45-
46- steps :
47- - name : 코드 체크아웃
48- uses : actions/checkout@v4
49-
50- - name : Java 21 설정
51- uses : actions/setup-java@v4
52- with :
53- distribution : ' temurin'
54- java-version : ' 21'
55- cache : ' gradle'
56-
57- - name : Gradle 권한 설정
58- run : chmod +x ./gradlew
59-
60- - name : 테스트 실행
61- run : ./gradlew test
62-
63- - name : 테스트 결과 업로드
64- if : always()
65- uses : actions/upload-artifact@v4
66- with :
67- name : test-results
68- path : build/reports/tests/test/
43+ test :
44+ runs-on : ubuntu-latest
45+
46+ steps :
47+ - name : 코드 체크아웃
48+ uses : actions/checkout@v4
49+
50+ - name : Java 21 설정
51+ uses : actions/setup-java@v4
52+ with :
53+ distribution : ' temurin'
54+ java-version : ' 21'
55+ cache : ' gradle'
56+
57+ - name : 테스트 실행
58+ run : |
59+ cd back
60+ chmod +x gradlew
61+ ./gradlew test
62+
63+ - name : 테스트 결과 업로드
64+ if : always()
65+ uses : actions/upload-artifact@v4
66+ with :
67+ name : test-results
68+ path : back/ build/reports/tests/test/
6969
7070 # ---------------------------------------------------------
7171 # 2) 태그/릴리즈 생성 (main 브랜치만)
You can’t perform that action at this time.
0 commit comments