From d1f5f66e42b078b33748d75c8299e4511b05a672 Mon Sep 17 00:00:00 2001 From: Anna Shaleva Date: Tue, 13 Feb 2024 17:30:41 +0300 Subject: [PATCH] .github: adjust testing workflow triggers Run tests and linter on push, PR to master and manually. Signed-off-by: Anna Shaleva --- .github/workflows/go.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 6f8f684c..106b4751 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -1,5 +1,15 @@ name: Go -on: [push] +on: + push: + branches: [ master ] + pull_request: + branches: + - master + types: [opened, synchronize] + paths-ignore: + - '**/*.md' + workflow_dispatch: + jobs: lint: name: Lint