Skip to content

Commit dce95a3

Browse files
committed
Add github build action
1 parent eeb0c99 commit dce95a3

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/gradle.yml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Java CI
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v1
10+
with:
11+
submodules: recursive
12+
- name: Set up JDK 1.8
13+
uses: actions/setup-java@v1
14+
with:
15+
java-version: 1.8
16+
- name: Build with Gradle
17+
run: ./gradlew build
18+
- uses: actions/upload-artifact@v2-preview
19+
with:
20+
name: artifact
21+
path: build/libs/*

0 commit comments

Comments
 (0)