Skip to content

Commit 98e5f89

Browse files
committed
wip: run integration tests in workflow
1 parent adbe9b0 commit 98e5f89

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

.github/workflows/ci.yaml

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,20 @@ jobs:
1616
- uses: actions/setup-go@v2
1717
with:
1818
go-version: '^1.16'
19-
- name: run-tests
20-
run: go test -v ./...
19+
- name: go-env
20+
run: |
21+
go env
22+
#mkdir "$HOME/gobin"
23+
#echo "GOBIN=$HOME/gobin" >> $GITHUB_ENV
24+
#echo "$HOME/gobin" >> $GITHUB_PATH
25+
- name: unit-tests
26+
run: |
27+
go install github.com/onsi/ginkgo/ginkgo@v1.16.4
28+
make test
29+
- name: integration-tests
30+
run: |
31+
go install sigs.k8s.io/kind@v0.11.1
32+
make integration-test
2133
image:
2234
runs-on: ubuntu-latest
2335
if: github.event_name == 'push'

0 commit comments

Comments
 (0)