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 670f01d commit 4762825Copy full SHA for 4762825
.github/workflows/gradle.yml
@@ -0,0 +1,29 @@
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: Java CI with Gradle
5
6
+on:
7
+ push:
8
+ branches:
9
+ - main
10
+ - release/*
11
+ pull_request:
12
13
14
15
+jobs:
16
+ build:
17
18
+ runs-on: ubuntu-latest
19
20
+ steps:
21
+ - uses: actions/checkout@v2
22
+ - name: Set up JDK 1.8
23
+ uses: actions/setup-java@v1
24
+ with:
25
+ java-version: 1.8
26
+ - name: Grant execute permission for gradlew
27
+ run: chmod +x gradlew
28
+ - name: Build with Gradle
29
+ run: ./gradlew build
0 commit comments