Feature: 배포 세팅 #17
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
pull_request: | |
branches: | |
- develop | |
types: [ opened, synchronize, reopened ] | |
jobs: | |
build: | |
name: CI | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
kotlin-version: [ "1.8.22" ] | |
java-version: [ "17" ] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Set up Kotlin | |
uses: actions/setup-java@v3 | |
with: | |
java-version: ${{ matrix.java-version }} | |
kotlin-version: ${{ matrix.kotlin-version }} | |
distribution: 'corretto' | |
- name: Cache SonarCloud packages | |
uses: actions/cache@v3 | |
with: | |
path: ~/.sonar/cache | |
key: ${{ runner.os }}-sonar | |
restore-keys: ${{ runner.os }}-sonar | |
- name: Cache Gradle packages | |
uses: actions/cache@v3 | |
with: | |
path: ~/.gradle/caches | |
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle', '*.gradle') }} | |
restore-keys: ${{ runner.os }}-gradle | |
# 빌드, ktlint check도 진행됨 | |
- name: Gradle 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 --no-daemon | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUBTOKEN }} | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} |