We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1dfe145 commit 09ea2d9Copy full SHA for 09ea2d9
1 file changed
.github/workflows/ci.yaml
@@ -0,0 +1,26 @@
1
+name: CI
2
+
3
+on: [ push ]
4
5
+jobs:
6
+ upload:
7
+ name: CI
8
+ runs-on: ubuntu-latest
9
10
+ steps:
11
+ - uses: actions/checkout@v4
12
13
+ - name: Cache Local Maven Repository
14
+ uses: actions/cache@v4
15
+ with:
16
+ path: ~/.m2/repository
17
+ key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
18
19
+ - name: Setup Java
20
+ uses: actions/setup-java@v4
21
22
+ java-version: 11
23
+ distribution: 'adopt'
24
25
+ - name: Run CI
26
+ run: mvn --batch-mode clean verify
0 commit comments