GitLab CI Kotlin DSL • opensavvy.gitlab.ci • Artifacts • apiFuzzing
apiFuzzing¶
fun apiFuzzing(path: String)
Collects API fuzzing security test reports.
GitLab can display the results of one or more API fuzzing reports in:
-
The merge request security widget
-
The Project Vulnerability report
-
The pipeline Security tab
-
The security dashboard
Example¶
val apiFuzzing by job {
script {
shell("run-api-fuzzing-tests")
}
artifacts {
apiFuzzing("gl-api-fuzzing-report.json")
}
}