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 78b560c commit 13cca22Copy full SHA for 13cca22
.github/FUNDING.yml
@@ -0,0 +1,2 @@
1
+ko_fi: alexcheng1982
2
+github: alexcheng1982
.github/workflows/build.yaml
@@ -0,0 +1,22 @@
+name: build
+
3
+on:
4
+ push:
5
+ branches: [ main ]
6
+ pull_request:
7
8
9
+jobs:
10
+ build:
11
+ runs-on: ubuntu-latest
12
13
+ steps:
14
+ - uses: actions/checkout@v4
15
+ - name: Set up JDK
16
+ uses: actions/setup-java@v3
17
+ with:
18
+ java-version: "21"
19
+ distribution: "temurin"
20
+ cache: maven
21
+ - name: Build with Maven
22
+ run: mvn --batch-mode --update-snapshots package
0 commit comments