Skip to content

Commit

Permalink
Use GitHub Actions for CI (#450)
Browse files Browse the repository at this point in the history
  • Loading branch information
PatrickGotthard committed Jun 25, 2020
1 parent 06e4ae5 commit 6a0d07f
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: CI Build

on:
push:
pull_request:
branches:
- master

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v1
with:
java-version: 1.8
- run: mvn -B package

0 comments on commit 6a0d07f

Please sign in to comment.