Skip to content

Commit

Permalink
chore: Configure github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
devcsrj committed Nov 20, 2023
1 parent 69191f0 commit 8e8424b
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Java CI

on: [ push ]

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
- name: Setup Gradle
uses: gradle/gradle-build-action@v2
with:
gradle-version: '8.4'

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

0 comments on commit 8e8424b

Please sign in to comment.