Skip to content

Commit

Permalink
install ginkgo before running tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jamyct committed Jan 3, 2025
1 parent 89b646c commit 6fd0c47
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/unit-integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,10 @@ jobs:
- name: Check out code into the Go module directory
uses: actions/checkout@v4

- name: Set up Ginkgo CLI
run: |
go install github.com/onsi/ginkgo/v2/[email protected]
- name: Run unit + integration tests & Generate coverage
run: make test

Expand All @@ -55,7 +59,3 @@ jobs:
token: ${{ secrets.CODECOV_TOKEN }}
## Comma-separated list of files to upload
files: ./coverage.xml

- name: Set up Ginkgo CLI
run: |
go install github.com/onsi/ginkgo/v2/[email protected]

0 comments on commit 6fd0c47

Please sign in to comment.