From 6494638106eea1ea1e16f872b0007ec97fb0ac89 Mon Sep 17 00:00:00 2001 From: Christopher Fenner <26137398+CCFenner@users.noreply.github.com> Date: Mon, 3 Feb 2020 15:59:56 +0100 Subject: [PATCH] chore(pipeline): add Groovy unit test as GH action (#1140) * Create verify-groovy.yml * correct indent * correct indent --- .github/workflows/verify-groovy.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/verify-groovy.yml diff --git a/.github/workflows/verify-groovy.yml b/.github/workflows/verify-groovy.yml new file mode 100644 index 000000000..e17aa4c2a --- /dev/null +++ b/.github/workflows/verify-groovy.yml @@ -0,0 +1,16 @@ +name: Groovy + +on: [push] + +jobs: + unit: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - uses: actions/setup-java@v1 + with: + java-version: 1.8 + - name: checkout + uses: actions/checkout@v2 + - name: unit-test + run: mvn --batch-mode clean verify -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn