Skip to content

Commit

Permalink
Add Continuous Integration support.
Browse files Browse the repository at this point in the history
Make Github will automatically build any code  pushed to it.
  • Loading branch information
brettle committed Apr 22, 2024
1 parent 11dff42 commit e613622
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/gradle.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
with:
submodules: 'recursive'
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 17
- name: Build with Gradle
run: ./gradlew build

0 comments on commit e613622

Please sign in to comment.