We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51c8967 commit 445f076Copy full SHA for 445f076
.github/workflows/gradle.yml
@@ -0,0 +1,26 @@
1
+# This workflow will build a Java project with Gradle
2
+# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle
3
+
4
+name: Build Test
5
+on:
6
+ push:
7
+ branches: [ master ]
8
+ pull_request:
9
10
11
+jobs:
12
+ build:
13
14
+ runs-on: ubuntu-latest
15
16
+ steps:
17
+ - uses: actions/checkout@v2
18
+ - name: Set up JDK 8
19
+ uses: actions/setup-java@v2
20
+ with:
21
+ java-version: '8'
22
+ distribution: 'adopt'
23
+ - name: Grant execute permission for gradlew
24
+ run: chmod +x gradlew
25
+ - name: Build with Gradle
26
+ run: ./gradlew build
0 commit comments