Browse Source

github actions ci compile check (#1041)

* github actions ci compile check

* alter spelling mistake and add parameters -B
pull/2/head
khadgarmage 5 years ago committed by dailidong
parent
commit
2cb635fe69
  1. 10
      .github/workflows/ci.yml

10
.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:

Loading…
Cancel
Save