Skip to content

Update the project for kubebuilder go/v4 layout #50

Update the project for kubebuilder go/v4 layout

Update the project for kubebuilder go/v4 layout #50

Workflow file for this run

name: NNF int-test
#on: [push]
jobs:
int-test:
runs-on: self-hosted
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version-file: 'go.mod'
cache: true
- name: Setup Ginkgo
run: >
GINKGO_MOD=$(grep "github.com/onsi/ginkgo" go.mod | awk '{print $1 "@" $2}')
GOMEGA_VER=$(grep "github.com/onsi/gomega" go.mod | awk '{print $2}')
bash -c 'echo Using $GINKGO_MOD and gomega $GOMEGA_VER && go get $GINKGO_MOD && go get github.com/onsi/gomega@$GOMEGA_VER'
- name: Setup Ginkgo CLI
run: >
GINKGO_CLI_VER=$(grep "github.com/onsi/ginkgo" go.mod | awk '{print $2}')
bash -c 'go install github.com/onsi/ginkgo/v2/ginkgo@$GINKGO_CLI_VER'
- name: Run int-test on Self-Hosted System
run: type ginkgo && ginkgo version && ginkgo run -p --vv ./test/...