Skip to content

Commit

Permalink
created ci.yml
Browse files Browse the repository at this point in the history
- use github actions
- addresses issue #19
  • Loading branch information
arburk committed May 7, 2020
1 parent 52f569d commit f30ce54
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven

name: CI

on: [push]

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 clean verify --file pom.xml

0 comments on commit f30ce54

Please sign in to comment.