Skip to content

Commit

Permalink
chore: ci.yml 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
sa46lll committed Dec 22, 2023
1 parent c223ecd commit 3ebba4c
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Java CI with Gradle

on:
workflow_dispatch:
pull_request:
branches: [ "main" ]
push:
branches: [ "main" , "feature/ci"]

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'

- name: Grant execute permission for gradlew
run: chmod +x gradlew

- name: Build with Gradle
run: ./gradlew test

0 comments on commit 3ebba4c

Please sign in to comment.