Skip to content

docs(perf): 성능 테스트 및 최적화 문서 한글/영문 버전 동시 추가 #29

docs(perf): 성능 테스트 및 최적화 문서 한글/영문 버전 동시 추가

docs(perf): 성능 테스트 및 최적화 문서 한글/영문 버전 동시 추가 #29

Workflow file for this run

name: ci
on:
push:
branches: [ main ]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: temurin
java-version: '21'
cache: gradle
- run: ./gradlew --no-daemon clean build jacocoTestReport
- name: Upload test reports
uses: actions/upload-artifact@v4
with:
name: test-reports-${{ github.sha }}
path: |
build/reports/tests/test/**
build/reports/jacoco/html/**
retention-days: 7