From 7e41be1105008ce4fa162a9730fdad2a8e43b742 Mon Sep 17 00:00:00 2001 From: Alexander Trakhimenok Date: Wed, 22 Jul 2026 06:31:39 +0100 Subject: [PATCH] ci: add shared workflow gate --- .github/workflows/ci.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..b8f6efb --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,20 @@ +name: Go CI + +on: + push: + branches: + - main + pull_request: + branches: + - '**' + +jobs: + strongo_workflow: + permissions: + contents: write + uses: strongo/cicd/.github/workflows/workflow.yml@main + secrets: + GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + cgo_enabled: false + disable-version-bumping: true