Create azure-pipeline.yaml

This commit is contained in:
chinnagajendra 2024-12-17 16:15:18 +05:30 committed by GitHub
parent 9fd82a74b1
commit c74a679b65
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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'