Skip to content

Commit

Permalink
github workflow BuildTest for every PR
Browse files Browse the repository at this point in the history
Signed-off-by: Laszlo Bende <L.Bende@mwam.com>
  • Loading branch information
mw-lb committed Oct 7, 2024
1 parent a64e0b4 commit 32cb672
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/BuiltTest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Build, test and package
on:
pull_request:
jobs:
build-test-package:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup JDK
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: 21
cache: gradle
- name: Setup Gradle
uses: gradle/gradle-build-action@v3
with:
arguments: --no-daemon
- name: Build, test and package
run: ./gradlew build

0 comments on commit 32cb672

Please sign in to comment.