Skip to content

Commit 69be3cf

Browse files
committed
fix: remove space file name
Signed-off-by: Zach Aller <[email protected]>
1 parent a2f98b4 commit 69be3cf

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
if: ${{ !cancelled() }}
5151
uses: codecov/[email protected]
5252
with:
53-
files: cover.out, cover-go-unit.out
53+
files: cover.out,cover-go-unit.out
5454
fail_ci_if_error: false
5555
env:
5656
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
CURRENT_DIR=$(shell pwd)
12
# Image URL to use all building/pushing image targets
23
IMG ?= quay.io/argoprojlabs/gitops-promoter:latest
34
# ENVTEST_K8S_VERSION refers to the version of kubebuilder assets to be downloaded by envtest binary.
@@ -79,7 +80,7 @@ vet: ## Run go vet against code.
7980
go vet ./...
8081

8182
.PHONY: test
82-
test: manifests generate fmt vet envtest ## Run Ginkgo tests using go test, we prefer to use test-parallel but this target is nice because it dose not require ginkgo cli.
83+
test: test-deps ## Run Ginkgo tests using go test, we prefer to use test-parallel but this target is nice because it dose not require ginkgo cli.
8384
KUBEBUILDER_ASSETS="$(shell $(ENVTEST) use $(ENVTEST_K8S_VERSION) --bin-dir $(LOCALBIN) -p path)" go test -run TestControllersGinkgo ./... -coverprofile cover.out
8485

8586
.PHONY: go-unit-test

0 commit comments

Comments
 (0)