From 2cb635fe695008d7e3060c840acf016f45d83a21 Mon Sep 17 00:00:00 2001 From: khadgarmage Date: Thu, 17 Oct 2019 14:58:53 +0800 Subject: [PATCH] github actions ci compile check (#1041) * github actions ci compile check * alter spelling mistake and add parameters -B --- .github/workflows/ci.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0ce451d8e3..c627b2b9fe 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,6 +3,16 @@ name: CI on: [push, pull_request] jobs: + Compile-check: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - name: Set up JDK 1.8 + uses: actions/setup-java@v1 + with: + java-version: 1.8 + - name: check + run: mvn -U -B clean package assembly:assembly -Dmaven.test.skip=true License-check: runs-on: ubuntu-latest steps: