Skip to content
This repository was archived by the owner on Sep 16, 2024. It is now read-only.

Commit

Permalink
conf(Continuous Intergration.yml): ISSUE 탬플릿 등록
Browse files Browse the repository at this point in the history
  • Loading branch information
goldentrash committed Jan 21, 2024
1 parent 1b5720c commit 0be9e6d
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/Continuous Integration.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Continuous Integration

on:
pull_request:
branches:
- 'develop'

jobs:
Test:
runs-on: ubuntu-22.04

steps:
- name: Set up sources
uses: actions/checkout@v4

- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: 17

- name: Setup Gradle
uses: gradle/gradle-build-action@v2

- name: Execute Gradle build
run: ./gradlew build

- name: Test
run: ./gradlew test

0 comments on commit 0be9e6d

Please sign in to comment.