From bdcd6846e2f56bbd393a805fc3075b390598bd45 Mon Sep 17 00:00:00 2001 From: aesperer Date: Mon, 15 Jan 2024 22:54:24 +0900 Subject: [PATCH] create :: eureka server ci yml --- .github/PULL_REQUEST_TEMPLATE.md | 3 +++ .github/workflows/eureka-ci.yml | 26 ++++++++++++++++++++++++++ 2 files changed, 29 insertions(+) create mode 100644 .github/PULL_REQUEST_TEMPLATE.md create mode 100644 .github/workflows/eureka-ci.yml diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..5a1b78d --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,3 @@ +## Type of PR + +### Changes \ No newline at end of file diff --git a/.github/workflows/eureka-ci.yml b/.github/workflows/eureka-ci.yml new file mode 100644 index 0000000..b9d3ced --- /dev/null +++ b/.github/workflows/eureka-ci.yml @@ -0,0 +1,26 @@ +name: Dotori Eureka Server CI + +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "*" ] + +jobs: + build: + + runs-on: ubuntu-latest + + 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: chmod +x ./gradlew + + - name: Build with Gradle + run: ./gradlew build \ No newline at end of file