Skip to content

Commit 5081f6c

Browse files
author
Abhishek Malvadkar
committed
GH-1 : Added GitHub action workflow for CI
1 parent 524912b commit 5081f6c

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

.github/workflows/Dev-CI.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Dev CI
2+
3+
on:
4+
push:
5+
branches:
6+
- '**'
7+
workflow_dispatch:
8+
9+
jobs:
10+
build:
11+
name: Build
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- uses: actions/checkout@v4
16+
17+
- name: Setup Java 21
18+
uses: actions/setup-java@v4
19+
with:
20+
java-version: '21'
21+
distribution: 'temurin'
22+
cache: 'maven'
23+
24+
- name: Make Maven wrapper executable
25+
run: chmod +x mvnw
26+
27+
- name: Build with Maven
28+
run: ./mvnw --no-transfer-progress clean verify
29+

0 commit comments

Comments
 (0)