From 697938b14a3cc0cd26ab241a9a449a5b924a554f Mon Sep 17 00:00:00 2001 From: stefanvacareanu7 <91726880+stefanvacareanu7@users.noreply.github.com> Date: Tue, 5 May 2026 15:35:01 +0200 Subject: [PATCH 1/2] Push pipeline to create a new tag Added instructions for testing external tools integration. --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 54e2c08..ac3c1d8 100755 --- a/README.md +++ b/README.md @@ -30,6 +30,8 @@ docker run -it -v $srcDir:/src codacy-opengrep:latest go run ./cmd/docgen ``` + + ## Test We use the [codacy-plugins-test](https://github.com/codacy/codacy-plugins-test) to test our external tools integration. From 4522d420bdb114ef2ffb991c8882b77861dd5225 Mon Sep 17 00:00:00 2001 From: stefanvacareanu7 <91726880+stefanvacareanu7@users.noreply.github.com> Date: Tue, 5 May 2026 15:39:38 +0200 Subject: [PATCH 2/2] [TEST]Add test constant to docgen.go --- internal/docgen/docgen.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/docgen/docgen.go b/internal/docgen/docgen.go index 347fd92..ec50fbc 100644 --- a/internal/docgen/docgen.go +++ b/internal/docgen/docgen.go @@ -13,6 +13,7 @@ import ( const ( toolName = "opengrep" toolVersionFile = ".tool_version" + testConst = "testing" ) type DocumentationGenerator interface {