Browse Source

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.
pull/355/head
Daniele Sluijters 3 years ago
committed by GitHub
parent
commit
ef76a26ec0
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      .github/workflows/ci.yaml

4
.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:

Loading…
Cancel
Save