Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: no daemon 추가 #3
Browse files Browse the repository at this point in the history
wjdtkdgns committed Nov 21, 2023
1 parent d8e96ac commit 7cbe07d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
@@ -39,20 +39,20 @@ jobs:
uses: actions/cache@v3
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '*.gradle*') }}
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle', '*.gradle') }}
restore-keys: ${{ runner.os }}-gradle

# 빌드, ktlint check도 진행됨
- name: Gradle Clean & Build
run: ./gradlew clean build
run: ./gradlew clean build --no-daemon

# 컨테이너 실행
- name: Start containers # test 돌릴때 mysql 필요
run: docker-compose up -d

# jacoco, sonarcube
- name: test and analyze
run: ./gradlew test sonar --stacktrace
run: ./gradlew test sonar --stacktrace --no-daemon
env:
GITHUB_TOKEN: ${{ secrets.GITHUBTOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}

0 comments on commit 7cbe07d

Please sign in to comment.