Skip to content

Commit

Permalink
[7주차] CI workflow 구현
Browse files Browse the repository at this point in the history
  • Loading branch information
sunseo18 committed Nov 28, 2023
1 parent 772ddfe commit 4e2bddf
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions Second Seminar/SecondSeminar/.github/workflows/CI.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: CI

on:
pull_request:
branches: [ "develop" ]

permissions:
contents: read

jobs:
build:
runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v3

- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'corretto'
java-version: '17'

- name: application.yaml 파일 생성
run:
echo "${{ secrets.APPLICATION }}" > ./application.yaml
shell:
bash

- name: Build with Gradle
run: |
chmod +x gradlew
./gradlew build -x test

0 comments on commit 4e2bddf

Please sign in to comment.