Skip to content

Commit f963b2d

Browse files
committed
fix: self review
1 parent 489b13b commit f963b2d

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -471,7 +471,7 @@ jobs:
471471
e2e:
472472
name: E2E
473473
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
474+
# Note: This check is running against the image that is going to be pushed.
475475
needs:
476476
- artifacts
477477

Makefile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,12 @@ lint-go: ## Lint Go code
172172
$(call print-target)
173173
golangci-lint run -v
174174

175+
.PHONY: ci
176+
ci: ## Run CI checks
177+
$(call print-target)
178+
$(MAKE) generate-all
179+
$(MAKE) -j 10 lint test etoe
180+
175181
.PHONY: fmt
176182
fmt: ## Format code
177183
$(call print-target)

0 commit comments

Comments
 (0)