This commit is contained in:
gajendrachinna 2024-12-17 16:36:00 +05:30
commit 0c95d419ee

18
src/azure-pipeline.yaml Normal file
View file

@ -0,0 +1,18 @@
---
pool: 'default'
trigger:
branches:
include:
- main
stages:
- stage: build
jobs:
- job: jobbuild
steps:
- task: Gardle@3
inputs:
gradleWrapperFile: 'gradlew'
publishJUnitResults: true
testResultFiles: '**/TEST-*.xml'
jdkVersionOption: '1.17'
goals: 'validate'