Skip to content

infra: 백엔드 cicd 환경 설정 #12

infra: 백엔드 cicd 환경 설정

infra: 백엔드 cicd 환경 설정 #12

Workflow file for this run

name: ✨Celuveat Backend CI✨
on:
push:
branches: [ "develop-backend" ]
pull_request:
branches: [ "develop-backend" ]
permissions:
checks: write
pull-requests: write
jobs:
backend-test:
runs-on: ubuntu-latest
env:
working-directory: ./backend
steps:
- uses: actions/checkout@v3
- name: ✨ JDK 17 설정
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
- name: ✨ Gradlew 권한 설정
run: chmod +x ./gradlew
- name: ✨ 테스트 진행
run: ./gradlew test
- name: ✨ 테스트 결과 Report
uses: EnricoMi/publish-unit-test-result-action@v2
if: ${{ always() }}
with:
files: '**/build/test-results/**/*.xml'
- name: ✨ 테스트 실패 Comment
uses: mikepenz/action-junit-report@v3
if: always()
with:
report_paths: '**/build/test-results/test/TEST-*.xml'