Skip to content

[REFACTOR] 추천 스터디 조회 Service 유닛 테스트 코드 작성 #153

[REFACTOR] 추천 스터디 조회 Service 유닛 테스트 코드 작성

[REFACTOR] 추천 스터디 조회 Service 유닛 테스트 코드 작성 #153

Workflow file for this run

name: Testing
on:
pull_request:
branches:
- develop
jobs:
build_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: 'adopt'
- name: Make application.yml
run: |
export SENTRY_AUTH_TOKEN=${{ secrets.SENTRY_AUTH_TOKEN }}
mkdir -p src/main/resources
echo "${{ secrets.TEST_PROPERTIES }}" > src/main/resources/application.yml
- name: Run tests
run: |
./gradlew test