We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf30d77 commit 1eaa867Copy full SHA for 1eaa867
.github/workflows/cd.yml
@@ -51,7 +51,7 @@ jobs:
51
52
#test를 제외한 프로젝트 빌드
53
- name: Build With Gradle
54
- run: ./gradlew build -x test
+ run: ./gradlew clean build -x test --no-build-cache
55
56
- name: Set up Docker Build
57
uses: docker/setup-buildx-action@v2
.github/workflows/ci.yml
@@ -73,11 +73,10 @@ jobs:
73
74
# 테스트를 제외한 프로젝트 빌드
75
76
77
78
- # 테스트 실행
79
- name: Build With Test
80
- run: ./gradlew test
+ run: ./gradlew test --no-build-cach
81
82
# 테스트 결과 파일 생성
83
- name: Publish Unit Test Results
0 commit comments