Skip to content

Commit

Permalink
ci: CI 스크립트 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
JJ503 committed Dec 8, 2023
1 parent d988c92 commit 689c3b1
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 1 deletion.
45 changes: 45 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: CI - JaCoCo & SonarCloud

on:
pull_request:
branches:
- main
- develop
types: [opened, reopened, synchronize]

jobs:
build:
runs-on: ubuntu-22.04
steps:
- name: checkout branch
uses: actions/checkout@v3

- name: set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
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
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: chmod gradle
run: chmod +x ./

- name: build and analyze
run: |
./gradlew build jacocoTestReport sonar
2 changes: 1 addition & 1 deletion .github/workflows/dev-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
token: ${{ secrets.GITHUB_TOKEN }}
submodules: true

- name: Set up JDK 17
- name: set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
Expand Down

0 comments on commit 689c3b1

Please sign in to comment.