diff --git a/azure-pipelines.yml b/azure-pipelines.yml new file mode 100644 index 0000000..7766d91 --- /dev/null +++ b/azure-pipelines.yml @@ -0,0 +1,14 @@ +# +# Example using JSON format +# +trigger: + - master +pool: + vmImage: "ubuntu-latest" +container: checkmarx/kics:debian +steps: + # running in CI mode, exporting results to a JSON file and printing the results in stdout + # KICS should fail the pipeline if results are found + - script: | + /app/bin/kics scan --ci -p ${PWD} -o ${PWD} + cat results.json