Skip to content
This repository was archived by the owner on Jun 28, 2023. It is now read-only.

Commit ef76a26

Browse files
authored
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.
1 parent 8916c80 commit ef76a26

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/ci.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,15 @@ on:
33
pull_request:
44
paths:
55
- '**.go'
6+
- 'go.mod'
7+
- 'go.sum'
68
branches:
79
- master
810
push:
911
paths:
1012
- '**.go'
13+
- 'go.mod'
14+
- 'go.sum'
1115
branches:
1216
- master
1317
tags-ignore:

0 commit comments

Comments
 (0)