File tree Expand file tree Collapse file tree 2 files changed +4
-6
lines changed
Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Original file line number Diff line number Diff line change 1818 go-version : ' 1.22.x'
1919 - name : Check out repository code
2020 uses : actions/checkout@v4
21- - run : echo "💡 The ${{ github.repository }} repository has been cloned to the runner."
22- - name : List files in the repository
23- run : |
24- ls ${{ github.workspace }}
2521 - name : Run tests
2622 run : go test -v -race ./...
2723 - name : Print diff
3026 run : go vet ./...
3127 - name : Go build
3228 run : go build -v -race ./...
33- - run : echo "🍏 This job's status is ${{ job.status }}."
29+ - name : Build check e2e tests
30+ run : go test -c -tags=e2e ./test/e2e
Original file line number Diff line number Diff line change @@ -110,7 +110,8 @@ func setup(stopCh <-chan struct{}) error {
110110 }
111111 adminDomain := ""
112112 systemNS := []string {}
113- domainUtil := util .NewUtil (adminDomain , systemNS )
113+ excludedNS := []string {}
114+ domainUtil := util .NewUtil (adminDomain , systemNS , excludedNS )
114115
115116 Global = & Framework {
116117 K8sClient : k8sclient ,
You can’t perform that action at this time.
0 commit comments