Skip to content

Commit

Permalink
Add github build action
Browse files Browse the repository at this point in the history
  • Loading branch information
gaurav-pasarkar committed Feb 9, 2024
1 parent b6e32ef commit 327a46b
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/build_and_deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Build and deploy
on: [push]
jobs:
gradle:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 21

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

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

0 comments on commit 327a46b

Please sign in to comment.