-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(action): add missing ginkgo dependencies in other workflow (#141)
Signed-off-by: prateekpandey14 <[email protected]>
- Loading branch information
1 parent
13a0d23
commit e3e4c56
Showing
3 changed files
with
15 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -54,6 +54,11 @@ jobs: | |
- name: Checkout | ||
uses: actions/[email protected] | ||
|
||
- name: Set up Go 1.14 | ||
uses: actions/setup-go@v2 | ||
with: | ||
go-version: 1.14.7 | ||
|
||
- name: Setup Minikube-Kubernetes | ||
uses: manusa/[email protected] | ||
with: | ||
|
@@ -74,8 +79,8 @@ jobs: | |
- name: Build images locally | ||
run: make csi-driver-image || exit 1; | ||
|
||
- name: Install ginkgo | ||
run: go get github.com/onsi/ginkgo/ginkgo && go get github.com/onsi/gomega/... | ||
- name: Install tests dependencies | ||
run: make bootstrap | ||
|
||
- name: Running tests | ||
run: ./ci/ci-test.sh | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,6 +29,11 @@ jobs: | |
- name: Checkout | ||
uses: actions/[email protected] | ||
|
||
- name: Set up Go 1.14 | ||
uses: actions/setup-go@v2 | ||
with: | ||
go-version: 1.14.7 | ||
|
||
- name: Setup Minikube-Kubernetes | ||
uses: manusa/[email protected] | ||
with: | ||
|
@@ -49,8 +54,8 @@ jobs: | |
- name: Build images locally | ||
run: make csi-driver-image || exit 1; | ||
|
||
- name: Install ginkgo | ||
run: go get github.com/onsi/ginkgo/ginkgo && go get github.com/onsi/gomega/... | ||
- name: Install tests dependencies | ||
run: make bootstrap | ||
|
||
- name: Running tests | ||
run: ./ci/ci-test.sh | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters