Skip to content

Commit

Permalink
ci: run maven tests on PR
Browse files Browse the repository at this point in the history
Co-authored-by: Torsten Will <[email protected]>
  • Loading branch information
volkland and towi committed Feb 19, 2025
1 parent c54313b commit b384435
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/verify-pull-request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Verify Pull Request

on:
pull_request:
branches: [main]

jobs:
check-pr:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: "zulu" # See 'Supported distributions' for available options
java-version: "21"
cache: maven
server-id: central
- name: Build and Test
run: mvn -B clean test

0 comments on commit b384435

Please sign in to comment.