Skip to content

Commit c2e274e

Browse files
committed
CI Pipeline.
1 parent 725ea88 commit c2e274e

1 file changed

Lines changed: 26 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
branches:
9+
- main
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

Comments
 (0)