Skip to content

Batch: ๐Ÿ› ์ •๊ธฐ ํ‘ธ์‹œ ์•Œ๋ฆผ ๋ฐฐ์น˜ ์ฟผ๋ฆฌ ํ”ฝ์Šค & ItemReader ๊ธฐ๋Šฅ ์ˆ˜์ • #300

Batch: ๐Ÿ› ์ •๊ธฐ ํ‘ธ์‹œ ์•Œ๋ฆผ ๋ฐฐ์น˜ ์ฟผ๋ฆฌ ํ”ฝ์Šค & ItemReader ๊ธฐ๋Šฅ ์ˆ˜์ •

Batch: ๐Ÿ› ์ •๊ธฐ ํ‘ธ์‹œ ์•Œ๋ฆผ ๋ฐฐ์น˜ ์ฟผ๋ฆฌ ํ”ฝ์Šค & ItemReader ๊ธฐ๋Šฅ ์ˆ˜์ • #300

Workflow file for this run

name: Continuous Integration
on:
pull_request:
branches: [ "dev" ]
workflow_dispatch:
inputs:
logLevel:
description: 'Log level'
required: true
default: 'warning'
type: choice
options:
- info
- warning
- debug
tags:
description: 'Test scenario tags'
required: false
type: boolean
environment:
description: 'Environment to run tests against'
type: environment
required: false
permissions:
contents: read
jobs:
testing:
runs-on: ubuntu-20.04
steps:
# 1. Compare branch ์ฝ”๋“œ ๋‚ด๋ ค ๋ฐ›๊ธฐ
- name: Checkout PR
uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.ref }}
# 2. ์ž๋ฐ” ํ™˜๊ฒฝ ์„ค์ •
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
# 3. Gradle Test ์‹คํ–‰
- name: Test with Gradle
run: |
chmod +x ./gradlew
./gradlew --info --parallel test