Skip to content

Commit

Permalink
Add github action to build on push
Browse files Browse the repository at this point in the history
  • Loading branch information
jwharm committed Apr 20, 2024
1 parent e8c9d2b commit 852efbc
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Build and test

on:
push:

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Setup Java
uses: actions/setup-java@v4
with:
java-version: 17
distribution: 'temurin'

- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3

- name: Build and test
run: ./gradlew build

0 comments on commit 852efbc

Please sign in to comment.