github actions ci compile check (#1041)
* github actions ci compile check * alter spelling mistake and add parameters -B
This commit is contained in:
parent
6bff5791a6
commit
2cb635fe69
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Reference in New Issue