From 72c8157a91d62b25fb1117a248da6c722cc853cf Mon Sep 17 00:00:00 2001 From: Sergey Grebenshchikov Date: Fri, 27 Sep 2024 12:24:32 +0200 Subject: [PATCH] disable badge commit on PRs --- .github/workflows/go.yml | 3 +++ .github/workflows/gocover.yaml | 2 -- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 413118a..77d4898 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -25,3 +25,6 @@ jobs: - name: Test run: go test -v ./... + + - name: Coverage + run: go test -v -cover ./... diff --git a/.github/workflows/gocover.yaml b/.github/workflows/gocover.yaml index f28f1d3..0bacdd3 100644 --- a/.github/workflows/gocover.yaml +++ b/.github/workflows/gocover.yaml @@ -3,8 +3,6 @@ name: Go coverage badge # The name of the workflow that will appear on Github on: push: branches: [main] - pull_request: - branches: [main] # Allows you to run this workflow manually from the Actions tab workflow_dispatch: