Skip to content

Revert "[feat] : 회원가입 api 구현 & user 엔티티 추가 구현" #50

Revert "[feat] : 회원가입 api 구현 & user 엔티티 추가 구현"

Revert "[feat] : 회원가입 api 구현 & user 엔티티 추가 구현" #50

Workflow file for this run

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# This workflow will build a Java project with Gradle and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-gradle
name: test CI
on:
pull_request:
branches: [ "dev" ]
jobs:
build:
runs-on: ubuntu-latest
permissions:
pull-requests: write
steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: test CI
uses: gradle/gradle-build-action@v2
with:
arguments: clean test jacocoTestReport jacocoTestCoverageVerification
- name: Add coverage to PR
id: jacoco
uses: madrapps/jacoco-report@v1.6.1
with:
paths: |
${{ github.workspace }}/interpark/api/build/reports/jacoco/jacocoTestReport.xml,
${{ github.workspace }}/interpark/core/build/reports/jacoco/jacocoTestReport.xml
token: ${{ secrets.GITHUB_TOKEN }}
title: '# :lobster: Test Coverage Report'
pass-emoji: ':green_circle:'
fail-emoji: ':red_circle:'