Skip to content

Commit

Permalink
[✨feat] 빌드 및 테스트를 위한 DEV-CI 파일 생성
Browse files Browse the repository at this point in the history
  • Loading branch information
junggyo1020 committed Aug 29, 2024
1 parent 718919b commit 3bfda20
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/DEV-CI.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: DEV-CI

on:
pull_request:
branches: [ "develop" ]

jobs:
build:
runs-on: ubuntu-24.04

steps:
- name: Set up JDK 21
uses: actions/setup-java@v3
with:
distribution: 'temurin'
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-
- name: build
run: |
chmod +x gradlew
./gradlew build -x test
shell: bash

0 comments on commit 3bfda20

Please sign in to comment.