From 2b7715b6688a2d42c1f38aac2ff79015b3eb2ea3 Mon Sep 17 00:00:00 2001 From: Carl Dea Date: Mon, 4 Jan 2021 22:55:03 -0500 Subject: [PATCH] Use GitHub CI to test project. --- .github/workflows/ci-test.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/ci-test.yml diff --git a/.github/workflows/ci-test.yml b/.github/workflows/ci-test.yml new file mode 100644 index 00000000..ac5492d9 --- /dev/null +++ b/.github/workflows/ci-test.yml @@ -0,0 +1,24 @@ +# 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: Java CI with Maven + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +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 cobertura:cobertura