From df5098d9bc7cae48a3df65b2a41737ee65300ba4 Mon Sep 17 00:00:00 2001 From: Brian Cunnie Date: Mon, 20 Jan 2025 14:47:06 -0800 Subject: [PATCH] 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 ``` --- .github/workflows/ci-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-tests.yml b/.github/workflows/ci-tests.yml index 1b6f6aa..97a97a4 100644 --- a/.github/workflows/ci-tests.yml +++ b/.github/workflows/ci-tests.yml @@ -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 .