From 6e172c8faed37667944cc85e1f55e0d54dc2782f Mon Sep 17 00:00:00 2001 From: Mik-Nord Date: Fri, 2 May 2025 09:55:15 +0200 Subject: [PATCH] Only on go files --- examples/automation-golang-test-suite.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 examples/automation-golang-test-suite.yml diff --git a/examples/automation-golang-test-suite.yml b/examples/automation-golang-test-suite.yml new file mode 100644 index 0000000..33dcf0c --- /dev/null +++ b/examples/automation-golang-test-suite.yml @@ -0,0 +1,14 @@ +name: Golang test suite +description: Status check that fails if a PR with Golang code fails its test suite. + +on: + pull_request: + branches: [ master, main ] + paths: + - '**.go' + - 'go.mod' + - 'go.sum' + +jobs: + shared: + uses: dfds/shared-workflows/.github/workflows/automation-golang-test-suite.yml@master