Browse Source

Create gradle.yml

greboid-patch-1
Greg Holmes 4 years ago
parent
commit
8e4637e107
No account linked to committer's email address
1 changed files with 17 additions and 0 deletions
  1. 17
    0
      .github/workflows/gradle.yml

+ 17
- 0
.github/workflows/gradle.yml View File

@@ -0,0 +1,17 @@
1
+name: Java CI
2
+
3
+on: [push]
4
+
5
+jobs:
6
+  build:
7
+
8
+    runs-on: ubuntu-latest
9
+
10
+    steps:
11
+    - uses: actions/checkout@master
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

Loading…
Cancel
Save