refactor: 졸업 결과 조회 구현 (#176) #272
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: Test & Jacoco Code Coverage | |
on: | |
push: | |
branches: [ main, develop ] | |
pull_request: | |
branches: [ main, develop ] # master branch에 PR을 보낼 때 실행 | |
jobs: | |
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: Set yaml file | |
uses: microsoft/variable-substitution@v1 | |
with: | |
files: ./src/main/resources/application.yml | |
env: | |
spring.datasource.url: ${{secrets.DB_URL}} | |
spring.datasource.username: ${{secrets.DB_USERNAME}} | |
spring.datasource.password: ${{secrets.DB_PASSWORD}} | |
server.port: ${{secrets.PORT}} | |
# Gradle wrapper 파일 실행 권한주기 | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
# Gradle test를 실행 후 report 추출 | |
- name: Test with Gradle | |
run: ./gradlew build jacocoTestReport | |
# report 업로드하기 | |
- name: Upload coverage to Codecov | |
uses: codecov/[email protected] |