Skip to content

Commit 67c6a6e

Browse files
Ankit098francisf
authored andcommitted
add: github action for build success on PR
1 parent 0ad5709 commit 67c6a6e

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/ci.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
pull_request:
8+
branches:
9+
- master
10+
11+
jobs:
12+
build:
13+
runs-on: ubuntu-latest
14+
15+
steps:
16+
- uses: actions/checkout@v2
17+
- name: Set up JDK 8
18+
uses: actions/setup-java@v3
19+
with:
20+
java-version: 8
21+
distribution: 'temurin'
22+
cache: 'maven'
23+
- name: Build
24+
run: mvn clean install -DskipTests

0 commit comments

Comments
 (0)