We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 725ea88 commit c2e274eCopy full SHA for c2e274e
1 file changed
.github/workflows/ci.yml
@@ -0,0 +1,26 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ pull_request:
8
9
10
11
+jobs:
12
+ test:
13
+ runs-on: ubuntu-latest
14
15
+ steps:
16
+ - name: Checkout Repo
17
+ uses: actions/checkout@v4
18
19
+ - name: Setup JDK
20
+ uses: actions/setup-java@v4
21
+ with:
22
+ java-version: '17'
23
+ distribution: 'microsoft'
24
25
+ - name: Build and Run Test Cases
26
+ run: mvn clean test
0 commit comments