diff --git a/src/azure-pipeline.yaml b/src/azure-pipeline.yaml new file mode 100644 index 000000000..e29e87f87 --- /dev/null +++ b/src/azure-pipeline.yaml @@ -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' \ No newline at end of file