Skip to content

Commit

Permalink
✅ [Test] PR 등록 시 test 자동 실행 기능 중지
Browse files Browse the repository at this point in the history
  • Loading branch information
Eunjin3395 committed Sep 19, 2024
1 parent 4df7889 commit 6965b79
Showing 1 changed file with 25 additions and 25 deletions.
50 changes: 25 additions & 25 deletions .github/workflows/pr-test.yml
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
name: PR Test

on:
pull_request:
branches: [ develop ] # develop branch에 PR을 보낼 때 실행

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'

# Gradle wrapper 파일 실행 권한주기
- name: Grant execute permission for gradlew
run: chmod +x gradlew

# Gradle test를 실행
- name: Test with Gradle
run: ./gradlew --info test
#name: PR Test
#
#on:
# pull_request:
# branches: [ develop ] # develop branch에 PR을 보낼 때 실행
#
#jobs:
# test:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v3
#
# - name: Set up JDK 17
# uses: actions/setup-java@v3
# with:
# java-version: '17'
# distribution: 'temurin'
#
# # Gradle wrapper 파일 실행 권한주기
# - name: Grant execute permission for gradlew
# run: chmod +x gradlew
#
# # Gradle test를 실행
# - name: Test with Gradle
# run: ./gradlew --info test

0 comments on commit 6965b79

Please sign in to comment.