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 b992f75 commit b3f2198Copy full SHA for b3f2198
.github/workflows/gradle.yml
@@ -0,0 +1,22 @@
1
+name: Java CI with Gradle
2
+on:
3
+ push:
4
+ branches: [ "main" ]
5
+ pull_request:
6
7
+permissions:
8
+ contents: read
9
+jobs:
10
+ build:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v3
14
+ - name: Set up JDK 11
15
+ uses: actions/setup-java@v3
16
+ with:
17
+ java-version: '11'
18
+ distribution: 'temurin'
19
+ - name: Build with Gradle
20
+ uses: gradle/gradle-build-action@67421db6bd0bf253fb4bd25b31ebb98943c375e1
21
22
+ arguments: build --stacktrace
0 commit comments