Skip to content

Commit

Permalink
ci: simpler workflow to check pull requests
Browse files Browse the repository at this point in the history
  • Loading branch information
jponge committed May 9, 2023
1 parent 0cc54cd commit c47aab2
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/pr-check.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Pull request check
on:
pull_request:

jobs:
build:
name: Pull request check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
name: Checkout from Git
with:
fetch-depth: 0
- uses: actions/setup-java@v2
name: Setup Java
with:
distribution: temurin
java-version: 11
cache: maven
- name: Run tests
run: ./mvnw --no-transfer-progress verify

0 comments on commit c47aab2

Please sign in to comment.