We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 489b13b commit f963b2dCopy full SHA for f963b2d
.github/workflows/ci.yaml
@@ -471,7 +471,7 @@ jobs:
471
e2e:
472
name: E2E
473
runs-on: depot-ubuntu-latest-8
474
- # Note: This check is running agains the image that is going to be pushed. We can shave off ~2m by just building the image
+ # Note: This check is running against the image that is going to be pushed.
475
needs:
476
- artifacts
477
Makefile
@@ -172,6 +172,12 @@ lint-go: ## Lint Go code
172
$(call print-target)
173
golangci-lint run -v
174
175
+.PHONY: ci
176
+ci: ## Run CI checks
177
+ $(call print-target)
178
+ $(MAKE) generate-all
179
+ $(MAKE) -j 10 lint test etoe
180
+
181
.PHONY: fmt
182
fmt: ## Format code
183
0 commit comments