Skip to content

Deploy: PR 생성시 테스트코드 수행 로직 구현 #3

Deploy: PR 생성시 테스트코드 수행 로직 구현

Deploy: PR 생성시 테스트코드 수행 로직 구현 #3

Workflow file for this run

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
env:
JWT_SECRET: ${{ secrets.JWT_SECRET }}
run: ./gradlew test