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 edb0118 commit b642f92Copy full SHA for b642f92
.github/workflows/gradle-test.yml
@@ -0,0 +1,31 @@
1
+name: Gradle Build
2
+
3
+on:
4
+ workflow_dispatch:
5
+ push:
6
+ branches: [ main ]
7
+ pull_request:
8
9
10
+jobs:
11
+ test:
12
+ runs-on: ubuntu-latest
13
14
+ steps:
15
+ - name: Checkout source
16
+ uses: actions/checkout@v2
17
18
+ - name: Set up JDK 17
19
+ uses: actions/setup-java@v2
20
+ with:
21
+ java-version: '17'
22
+ distribution: 'adopt'
23
24
+ - name: Make gradlew executable
25
+ run: chmod +x ./gradlew
26
27
+ - name: Build with Gradle
28
+ run: ./gradlew build
29
30
+ - name: Test with Gradle
31
+ run: ./gradlew test
0 commit comments