diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 000000000..5135463fd --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,15 @@ +pool: "Azure Pipelines" +trigger: + - main +jobs: + - job: "gradle" + displayName: "gradle job" + steps: + - task: "Gradle@3" + inputs: + + gradleWrapperFile: 'gradlew' + tasks: 'build' + publishJUnitResults: true + testResultsFiles: '**/TEST-*.xml' + \ No newline at end of file