From 7488e9d7743d2ccd93f60b8ab891ed9a51c39735 Mon Sep 17 00:00:00 2001 From: Chris McIntosh Date: Thu, 19 Mar 2020 13:25:59 -0500 Subject: [PATCH] Adding ci --- .github/workflows/ci.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 000000000..ee83de4bc --- /dev/null +++ b/.github/workflows/ci.yml @@ -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)