Skip to content

Commit

Permalink
👷️ Github Action CI 스크립트 생성 [#3]
Browse files Browse the repository at this point in the history
CI 테스트를 위한 기본 스크립트 생성

Related to: #3
  • Loading branch information
jun108059 committed Jan 1, 2023
1 parent 38d02e3 commit 32c0dff
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/github-action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: daangn-market CI

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]

permissions:
contents: read

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'temurin'
- name: Build with Gradle
uses: gradle/gradle-build-action@67421db6bd0bf253fb4bd25b31ebb98943c375e1
with:
arguments: build

0 comments on commit 32c0dff

Please sign in to comment.