Skip to content

Commit 13bceb6

Browse files
committed
Add end-to-end test for process plugins
1 parent b902fab commit 13bceb6

File tree

6 files changed

+555
-0
lines changed

6 files changed

+555
-0
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,9 @@ jobs:
3636
with:
3737
go-version: '1.18'
3838

39+
- name: install ./...
40+
run: go install ./...
41+
3942
- name: test ./...
4043
run: go test --tags=examples ./...
4144
env:

Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
build:
44
go build ./...
55

6+
install:
7+
go install ./...
8+
69
test:
710
go test ./...
811

0 commit comments

Comments
 (0)