[feat] 특정 질문 조회시 전문가 답변 갯수, 답변 갯수 같이 반환하도록 수정 #200
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Testing | |
on: | |
pull_request: | |
branches: | |
- develop | |
jobs: | |
build_test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '11' | |
distribution: 'temurin' | |
- name: Create secrets.properties | |
run: | | |
echo "${{ secrets.ENV }}" > src/main/resources/secrets.properties | |
- name: ./gradlew test | |
run: | | |
./gradlew test |