Skip to content

Commit 88af476

Browse files
committed
Merge branch 'master' of github.com:LIonWeb-org/lioncore-java
2 parents ce821a0 + 72fa504 commit 88af476

File tree

11 files changed

+458
-164
lines changed

11 files changed

+458
-164
lines changed

.github/workflows/integration.yml

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Integration
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
8+
runs-on: ubuntu-latest
9+
strategy:
10+
matrix:
11+
java: [ '8', '11', '17' ]
12+
name: Java ${{ matrix.Java }} Integration
13+
14+
steps:
15+
- uses: actions/checkout@v1
16+
- name: Setup java
17+
uses: actions/setup-java@v2
18+
with:
19+
distribution: 'adopt'
20+
java-version: ${{ matrix.java }}
21+
- name: Test
22+
run: ./gradlew integrationTest

.github/workflows/javadoc.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ jobs:
2020
distribution: 'adopt'
2121
java-version: ${{ matrix.java }}
2222
- name: Javadoc generation
23-
run: ./gradlew javadoc
23+
run: ./gradlew myJavadoc

core/build.gradle

-163
This file was deleted.

0 commit comments

Comments
 (0)