Adding ci

This commit is contained in:
Chris McIntosh 2020-03-19 13:25:59 -05:00
parent 5c35771a20
commit 7488e9d774
No known key found for this signature in database
GPG key ID: 07CF802E17FDA78E

19
.github/workflows/ci.yml vendored Normal file
View file

@ -0,0 +1,19 @@
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 and Test with Maven
run: mvn -B test --file pom.xml
- uses: codecov/codecov-action@v1
with:
flags: unittests # optional
name: codecov-umbrella # optional
fail_ci_if_error: true # optional (default = false)