Skip to content

Commit

Permalink
Merge pull request #9 from techorgx/add-build-test-workflow
Browse files Browse the repository at this point in the history
Added maven-build workflow
  • Loading branch information
amansinghrajpoot authored Nov 19, 2023
2 parents ee553e0 + a9b2e43 commit 419a33f
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/maven-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Build and Test

on:
push:
branches:
- master
pull_request:
branches:
- master

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout Code
uses: actions/checkout@v2

- name: Set Up JDK
uses: actions/setup-java@v2
with:
java-version: '17'
distribution: 'temurin'

- name: Build with Maven
run: mvn clean install

0 comments on commit 419a33f

Please sign in to comment.