Skip to content

Commit

Permalink
add ci build
Browse files Browse the repository at this point in the history
  • Loading branch information
jillesvangurp committed Jul 29, 2024
1 parent 3860073 commit 033b369
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Java CI

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

jobs:
build:

runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Set up JDK 11
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '11'
cache: 'gradle'

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

0 comments on commit 033b369

Please sign in to comment.