Skip to content

Commit

Permalink
ci(github): Basic Gradle workflow to build on Github
Browse files Browse the repository at this point in the history
  • Loading branch information
skaldarnar committed Sep 3, 2023
1 parent 36591e1 commit 01470be
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Java CI

on: [push]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: '15'
distribution: 'adopt'
- name: Validate Gradle Wrapper
uses: gradle/wrapper-validation-action@v1
- name: Setup Gradle
uses: gradle/gradle-build-action@v2
- name: Execute Gradle Build
run: ./gradlew build

0 comments on commit 01470be

Please sign in to comment.