This commit is contained in:
rizwangourysk 2026-03-26 10:18:45 +00:00 committed by GitHub
commit 98a3e485fe
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 23 additions and 0 deletions

23
pr.yaml Normal file
View File

@ -0,0 +1,23 @@
---
# This workflow will execute on pull request to dev branch
name: pr-workflow
on:
pull_request:
branches:
- dev
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: get the code
uses: actions/checkout@v6
- name: compile the code
run: mvn compile
- name: test the code
run: mvn test
- name: create the package
run: mvn package