mirror of https://github.com/alibaba/easyexcel
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
576 B
23 lines
576 B
3 years ago
|
# 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
|