Merge 7a020261faef93d083a5588d91eb462663104f87 into 9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0

This commit is contained in:
rizwangourysk 2026-06-21 00:25:41 +09:00 committed by GitHub
commit 04fb1c8e5d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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