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 1ba565d commit 707ddbdCopy full SHA for 707ddbd
.github/workflows/build.yml
@@ -0,0 +1,30 @@
1
+name: Build
2
+
3
+on:
4
+ push:
5
+ branches: [ main ]
6
+ pull_request:
7
8
9
+permissions:
10
+ contents: read
11
12
+jobs:
13
+ build:
14
+ strategy:
15
+ matrix:
16
+ java: ['11', '17']
17
18
+ runs-on: ubuntu-latest
19
20
+ steps:
21
+ - uses: actions/checkout@v3
22
+ - name: Set up JDK ${{ matrix.java }}
23
+ uses: actions/setup-java@v3
24
+ with:
25
+ java-version: ${{ matrix.java }}
26
+ distribution: 'zulu'
27
+ - name: Build with Gradle
28
+ uses: gradle/gradle-build-action@0d13054264b0bb894ded474f08ebb30921341cee
29
30
+ arguments: build
0 commit comments