Skip to content

CICD 테스트 - CD까지 적용 #3

CICD 테스트 - CD까지 적용

CICD 테스트 - CD까지 적용 #3

Workflow file for this run

name: Java CI with Maven
on:
pull_request:
branches: ["main"]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out the repository
uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
cache: maven
- name: Build and test with Maven
run: mvn --batch-mode package