From ef76a26ec0da84b830e82e926d4ed82066460bb8 Mon Sep 17 00:00:00 2001 From: Daniele Sluijters Date: Wed, 21 Jul 2021 15:17:43 +0200 Subject: [PATCH] CI: Ensure we run on go.mod|sum changes I noticed that after the rebase for #351 CI didn't run, whereas it should (since we're upgrading packages). This happens because as part of #350 we forgot to include go.mod|sum files as triggers. --- .github/workflows/ci.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index c4eaedb..5f1cea0 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -3,11 +3,15 @@ on: pull_request: paths: - '**.go' + - 'go.mod' + - 'go.sum' branches: - master push: paths: - '**.go' + - 'go.mod' + - 'go.sum' branches: - master tags-ignore: