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 efccc9c commit 7bfb498Copy full SHA for 7bfb498
.github/workflows/build.yaml
@@ -0,0 +1,26 @@
1
+name: Java CI
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ pull_request:
8
9
+permissions:
10
+ contents: read
11
12
+jobs:
13
+ build:
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - uses: actions/checkout@v4
17
+ - name: Set up JDK 17
18
+ uses: actions/setup-java@v4
19
+ with:
20
+ java-version: '17'
21
+ distribution: 'temurin'
22
+ - name: Run build
23
+ run: |
24
+ mvn install
25
26
0 commit comments