GitHub Actions: CI Workflow installs ginkgo beforehand

Fixes, hopefully:

```
integration_flags_test.go:8:2: no required module provides package github.com/onsi/ginkgo/v2; to add it:
	go get github.com/onsi/ginkgo/v2
```
This commit is contained in:
Brian Cunnie
2025-01-20 14:47:06 -08:00
parent 4ef76a113c
commit df5098d9bc

View File

@@ -15,4 +15,4 @@ jobs:
- uses: actions/checkout@v4
- name: Test
run: go mod download && ginkgo -r -p .
run: go mod download && go install github.com/onsi/ginkgo/v2/ginkgo && ginkgo -r -p .