Set up CI with Azure Pipelines

[skip ci]
This commit is contained in:
Akmal 2023-03-05 16:07:37 +05:30
parent f2d9c9b63f
commit 1371f700c5

24
azure-pipelines.yml Normal file
View file

@ -0,0 +1,24 @@
---
pool:
name: "Azure Pipelines"
vmImage: 'ubuntu-latest'
trigger:
- main
stages:
- stage: BuildStage
displayName: CI
jobs:
- job: mavenjob
displayName: maven
steps:
- task: Maven@3
inputs:
mavenPomFile: 'pom.xml'
goals: 'package'
publishJUnitResults: true
testResultsFiles: '**/surefire-reports/TEST-*.xml'
jdkVersionOption: '1.17'