Skip to content

Commit

Permalink
Create workflow.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
LorenzBuehmann committed Aug 28, 2019
1 parent 84e4355 commit 92d560e
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/workflow.yml
@@ -0,0 +1,21 @@
name: Java CI

on:
push:
branches:
- develop


jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Build with Maven
run: mvn package --file pom.xml

0 comments on commit 92d560e

Please sign in to comment.