From 7f48ab8a5884b242f963e7c2f39c50fd1754f7cb Mon Sep 17 00:00:00 2001 From: Matthias Koch Date: Mon, 12 Jun 2023 11:13:50 +0200 Subject: [PATCH] Add azure-pipelines.qodana.yml --- azure-pipelines.qodana.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 azure-pipelines.qodana.yml diff --git a/azure-pipelines.qodana.yml b/azure-pipelines.qodana.yml new file mode 100644 index 000000000..5d2c9f18c --- /dev/null +++ b/azure-pipelines.qodana.yml @@ -0,0 +1,15 @@ +pool: + vmImage: 'ubuntu-latest' + +jobs: + - job: QodanaScan + displayName: 'Qodana Scan' + steps: + - task: Cache@2 # Not required, but Qodana will open projects with cache faster. + inputs: + key: '"$(Build.Repository.Name)" | "$(Build.SourceBranchName)" | "$(Build.SourceVersion)"' + path: '$(Agent.TempDirectory)/qodana/cache' + restoreKeys: | + "$(Build.Repository.Name)" | "$(Build.SourceBranchName)" + "$(Build.Repository.Name)" + - task: QodanaScan@2023