Skip to content

Commit

Permalink
CI 구축
Browse files Browse the repository at this point in the history
  • Loading branch information
jihyo-j committed Feb 25, 2024
1 parent 2158035 commit a560273
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Java CI

on:
pull_request:
branches: [ "main"]


jobs:
build-docker-image:
runs-on: ubuntu-22.04
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: |
cd kobaco
cd kobaco
chmod +x gradlew
- name: Build With Gradle
run: |
cd kobaco
cd kobaco
./gradlew build

0 comments on commit a560273

Please sign in to comment.