Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion makefile
Original file line number Diff line number Diff line change
Expand Up @@ -355,4 +355,10 @@ ci-test: ## Run tests in CI environment

ci-coverage: ## Generate coverage in CI
@echo "$(BLUE)🤖 Generating CI coverage...$(RESET)"
forge coverage --report summary
forge coverage --report summary

ci-build: ## Build in CI environment
@echo "$(BLUE)🤖 Building for CI...$(RESET)"
forge build --optimize

ci-full: ci-build ci-test ci-coverage fmt-check ## Full CI pipeline
Loading