Skip to content

Commit

Permalink
deploy: PR 생성시 테스트코드 수행 로직 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
GitJIHO committed Oct 20, 2024
1 parent 5009cc8 commit 337b361
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/testcode.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Run Tests on Pull Request

on:
pull_request:
branches:
- Weekly

jobs:
test:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

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

- name: Run Tests
run: ./gradlew test

0 comments on commit 337b361

Please sign in to comment.