Skip to content

Commit

Permalink
#4 [setup] Added gradle build github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
vityaman committed Mar 16, 2024
1 parent 6d3cada commit 5f3ebe9
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 5 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
name: Gradle Build Check
on:
pull_request:
paths:
- "gateway/**"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout the Code
uses: actions/checkout@v4

- name: Setup Java
uses: actions/setup-java@v3
with:
java-version: '21'
distribution: 'temurin'

- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3

- name: Execute Gradle build
run: ./gradlew build
5 changes: 0 additions & 5 deletions .github/workflows/markdown.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,6 @@
---
name: Markdown Check
on:
push:
paths:
- ".github/workflows/*"
- ".markdownlint.yaml"
- "**/*.md"
pull_request:
paths:
- ".github/workflows/*"
Expand Down

0 comments on commit 5f3ebe9

Please sign in to comment.