Skip to content

Commit

Permalink
Added github action to build pull-requests
Browse files Browse the repository at this point in the history
  • Loading branch information
ccoltx authored and jonashackt committed Feb 2, 2021
1 parent 03b7588 commit 313f24f
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/build-pullrequest.yml
@@ -0,0 +1,19 @@
name: Pull Request Workflow

on:
pull_request:

jobs:
build:
runs-on: ubuntu-latest
steps:

- uses: actions/checkout@v2

- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8

- name: Build with Maven
run: mvn -B verify --no-transfer-progress

0 comments on commit 313f24f

Please sign in to comment.