Skip to content

[etc]Spring boot version 3.1.2 -> 3.1.6 #210

[etc]Spring boot version 3.1.2 -> 3.1.6

[etc]Spring boot version 3.1.2 -> 3.1.6 #210

Workflow file for this run

name: test
on:
push:
branches:
- main
pull_request:
branches:
- main
paths:
- .github/workflows/test.yml
- 'src/'
- '**/*.kt'
- 'gradle.*'
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: "17"
distribution: "corretto"
cache: "gradle"
# Gradle test를 실행
- name: Test with Gradle
run: ./gradlew clean testCoverage --no-daemon
# Report upload
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
file: ./build/reports/jacoco/test/jacocoTestReport.xml