Skip to content

Commit

Permalink
chore(CI) : DEV-CI 워크플로우 작성
Browse files Browse the repository at this point in the history
  • Loading branch information
jsoonworld authored Jan 26, 2025
1 parent 021ee52 commit 1added9
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/DEV-CI.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: DEV-CI

on:
pull_request:
branches: [ "develop" ]

jobs:
build:
runs-on: ubuntu-24.04
env:
working-directory: .

# Checkout - 가상 머신에 체크아웃
steps:
- name: 체크아웃
uses: actions/checkout@v3

# JDK setting - Amazon Corretto JDK 21 설정
- name: Set up Amazon Corretto JDK 21
uses: actions/setup-java@v3
with:
distribution: 'corretto'
java-version: '21'

# Gradle caching - 빌드 시간 향상
- name: Gradle Caching
uses: actions/cache@v3
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
restore-keys: |
${{ runner.os }}-gradle-
# Gradle build - 테스트 없이 gradle 빌드
- name: 빌드
run: |
chmod +x gradlew
./gradlew build -x test
working-directory: ${{ env.working-directory }}
shell: bash

0 comments on commit 1added9

Please sign in to comment.