1
Fork 0
mirror of https://code.forgejo.org/actions/checkout.git synced 2026-03-28 16:03:07 +00:00

added changes

This commit is contained in:
rizwangourysk 2026-03-26 14:56:46 +05:30
parent 0c366fd6a8
commit bd5c14db95

22
pr.yaml Normal file
View file

@ -0,0 +1,22 @@
---
# 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