mirror of https://github.com/alibaba/easyexcel
Jiaju Zhuang
2 years ago
1 changed files with 49 additions and 49 deletions
@ -1,53 +1,53 @@ |
|||||||
## |
|
||||||
## Copyright 2009-2021 the original author or authors. |
|
||||||
## |
|
||||||
## Licensed under the Apache License, Version 2.0 (the "License"); |
|
||||||
## you may not use this file except in compliance with the License. |
|
||||||
## You may obtain a copy of the License at |
|
||||||
## |
|
||||||
## http://www.apache.org/licenses/LICENSE-2.0 |
|
||||||
## |
|
||||||
## Unless required by applicable law or agreed to in writing, software |
|
||||||
## distributed under the License is distributed on an "AS IS" BASIS, |
|
||||||
## WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
||||||
## See the License for the specific language governing permissions and |
|
||||||
## limitations under the License. |
|
||||||
## |
|
||||||
# |
# |
||||||
#name: Java CI |
# Copyright 2009-2021 the original author or authors. |
||||||
# |
# |
||||||
#on: [push, pull_request] |
# Licensed under the Apache License, Version 2.0 (the "License"); |
||||||
|
# you may not use this file except in compliance with the License. |
||||||
|
# You may obtain a copy of the License at |
||||||
# |
# |
||||||
#jobs: |
# http://www.apache.org/licenses/LICENSE-2.0 |
||||||
# test: |
|
||||||
# runs-on: ubuntu-latest |
|
||||||
# strategy: |
|
||||||
# matrix: |
|
||||||
# java: [ 8, 11, 17] |
|
||||||
# distribution: [ 'adopt' ] |
|
||||||
# fail-fast: false |
|
||||||
# max-parallel: 4 |
|
||||||
# name: Test JDK ${{ matrix.java }} |
|
||||||
# |
# |
||||||
# steps: |
# Unless required by applicable law or agreed to in writing, software |
||||||
# - uses: actions/checkout@main |
# distributed under the License is distributed on an "AS IS" BASIS, |
||||||
# - name: Set up JDK |
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||||
# uses: actions/setup-java@main |
# See the License for the specific language governing permissions and |
||||||
# with: |
# limitations under the License. |
||||||
# java-version: ${{ matrix.java }} |
# |
||||||
# distribution: ${{ matrix.distribution }} |
|
||||||
# - name: Cache local Maven m2 |
name: Java CI |
||||||
# uses: actions/cache@v3 |
|
||||||
# with: |
on: [push, pull_request] |
||||||
# path: ~/.m2 |
|
||||||
# key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} |
jobs: |
||||||
# restore-keys: | |
test: |
||||||
# ${{ runner.os }}-m2 |
runs-on: ubuntu-latest |
||||||
# - name: Chmod |
strategy: |
||||||
# run: chmod +x mvnw |
matrix: |
||||||
# - name: Test with Maven |
java: [ 8, 11, 17] |
||||||
# run: ./mvnw test -B -Dmaven.test.skip=false |
distribution: [ 'adopt' ] |
||||||
# - name: Maven Build |
fail-fast: false |
||||||
# run: ./mvnw install -B -V |
max-parallel: 4 |
||||||
# - name: Java Doc |
name: Test JDK ${{ matrix.java }} |
||||||
# run: ./mvnw javadoc:javadoc |
|
||||||
|
steps: |
||||||
|
- uses: actions/checkout@main |
||||||
|
- name: Set up JDK |
||||||
|
uses: actions/setup-java@main |
||||||
|
with: |
||||||
|
java-version: ${{ matrix.java }} |
||||||
|
distribution: ${{ matrix.distribution }} |
||||||
|
- name: Cache local Maven m2 |
||||||
|
uses: actions/cache@v3 |
||||||
|
with: |
||||||
|
path: ~/.m2 |
||||||
|
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} |
||||||
|
restore-keys: | |
||||||
|
${{ runner.os }}-m2 |
||||||
|
- name: Chmod |
||||||
|
run: chmod +x mvnw |
||||||
|
- name: Test with Maven |
||||||
|
run: ./mvnw test -B -Dmaven.test.skip=false |
||||||
|
- name: Maven Build |
||||||
|
run: ./mvnw install -B -V |
||||||
|
- name: Java Doc |
||||||
|
run: ./mvnw javadoc:javadoc |
||||||
|
Loading…
Reference in new issue