Skip to content

Commit

Permalink
Add CI to validate Pull Requests
Browse files Browse the repository at this point in the history
  • Loading branch information
StefanLobbenmeier authored Jan 21, 2024
1 parent 63b5d46 commit f287ea4
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/pr-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Run Gradle on PRs
on: pull_request
jobs:
gradle:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 21

- name: Setup Gradle
uses: gradle/gradle-build-action@v2

- name: Execute Gradle build
run: ./gradlew build

0 comments on commit f287ea4

Please sign in to comment.