Skip to content

Commit

Permalink
[+] Build action
Browse files Browse the repository at this point in the history
  • Loading branch information
hykilpikonna committed Dec 21, 2023
1 parent 1f82067 commit 737c89c
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Gradle Build

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'temurin'
server-id: github

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

- name: Build with Gradle
run: ./gradlew build

0 comments on commit 737c89c

Please sign in to comment.