Browse Source

Create ci.yml

新增ci
developing
Jiaju Zhuang 3 years ago committed by GitHub
parent
commit
ff84b03d6d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 22
      .github/workflows/ci.yml

22
.github/workflows/ci.yml

@ -0,0 +1,22 @@
# This workflow will build a Java project with Ant
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-ant
name: Java CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 8
uses: actions/setup-java@v2
with:
java-version: '8'
distribution: 'adopt'
- name: CI
run: ./mvnw install -B -V -Dmaven.test.skip=true
- name: Java Doc
run: ./mvnw javadoc:javadoc
Loading…
Cancel
Save