Set up CI with Azure Pipelines

[skip ci]
This commit is contained in:
Sudheer Kumar Nellore 2023-02-05 19:53:34 +05:30
parent ca055dbbe1
commit d7b982cca7

20
azure-pipelines.yml Normal file
View file

@ -0,0 +1,20 @@
# Starter pipeline
# Start with a minimal pipeline that you can customize to build and deploy your code.
# Add steps that build, run tests, deploy, and more:
# https://aka.ms/yaml
trigger:
- main
pool:
vmImage: ubuntu-latest
steps:
- task: Maven@3
inputs:
mavenPomFile: 'pom.xml'
goals: 'package'
publishJUnitResults: true
testResultsFiles: '**/surefire-reports/TEST-*.xml'
jdkVersionOption: '1.17'
displayName: 'BuildTask'