Skip to content

Commit ee86607

Browse files
committed
Add env
Signed-off-by: mehabhalodiya <[email protected]>
1 parent 4ec2bde commit ee86607

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

.github/workflows/pr-checks.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,17 @@ on:
66
- master
77
- 'v*.*'
88

9+
env:
10+
GO111MODULE: on
11+
SDK_VERSION: "1.17.0"
12+
MINIKUBE_WANTUPDATENOTIFICATION: false
13+
MINIKUBE_WANTREPORTERRORPROMPT: false
14+
K8S_VERSION: "1.21.3"
15+
MINIKUBE_VERSION: "1.26.0"
16+
OLM_VERSION: "0.22.0"
17+
TEST_ACCEPTANCE_CLI: "kubectl"
18+
TEST_RESULTS: "out/acceptance-tests"
19+
920
jobs:
1021
lint:
1122
name: Code Quality

Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,9 @@ all: build
7676
help: ## Display this help.
7777
@awk 'BEGIN {FS = ":.*##"; printf "\nUsage:\n make \033[36m<target>\033[0m\n"} /^[a-zA-Z_0-9-]+:.*?##/ { printf " \033[36m%-15s\033[0m %s\n", $$1, $$2 } /^##@/ { printf "\n\033[1m%s\033[0m\n", substr($$0, 5) } ' $(MAKEFILE_LIST)
7878

79+
lint:
80+
golangci-lint run
81+
7982
##@ Development
8083

8184
manifests: controller-gen ## Generate WebhookConfiguration, ClusterRole and CustomResourceDefinition objects.

0 commit comments

Comments
 (0)