Skip to content

Commit

Permalink
create :: eureka server ci yml
Browse files Browse the repository at this point in the history
  • Loading branch information
esperar committed Jan 15, 2024
1 parent e03effe commit bdcd684
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
## Type of PR

### Changes
26 changes: 26 additions & 0 deletions .github/workflows/eureka-ci.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit bdcd684

Please sign in to comment.