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 2073eb9 commit 17b9e6dCopy full SHA for 17b9e6d
.github/workflows/main.yml
@@ -0,0 +1,17 @@
1
+name: Java build CI
2
+on: [push]
3
+
4
+jobs:
5
+ build:
6
+ runs-on: ubuntu-latest
7
+ steps:
8
+ # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
9
+ - uses: actions/checkout@v2
10
+ - name: Set up JDK 21
11
+ uses: actions/setup-java@v1
12
+ with:
13
+ java-version: 21
14
+ - name: Compile with Maven
15
+ run: mvn -B -U compile
16
+ - name: Test
17
+ run: mvn -B -U test
0 commit comments