Skip to content

Commit

Permalink
Merge branch 'main' into cleanup-translator-factory
Browse files Browse the repository at this point in the history
  • Loading branch information
nacx authored Feb 13, 2025
2 parents 0e13698 + 08ef861 commit c3a1722
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ help:
@echo ""
@echo "All core targets needed for contributing:"
@echo " precommit Run all necessary steps to prepare for a commit."
@echo " clean Clears all cached files and built artifacts. Whenever you run into issues with the target like 'precommit' or 'test', try running this target."
@echo " clean Clears all cached files, built artifacts and installed binaries. Whenever you run into issues with the target like 'precommit' or 'test', try running this target."
@echo " test Run the unit tests for the codebase."
@echo " test-coverage Run the unit tests for the codebase with coverage check."
@echo " test-crdcel Run the integration tests of CEL validation in CRD definitions with envtest."
Expand Down Expand Up @@ -172,12 +172,13 @@ test-coverage: go-test-coverage
@$(MAKE) test GO_TEST_ARGS="-coverprofile=$(OUTPUT_DIR)/go-test-coverage.out -covermode=atomic -coverpkg=./... $(GO_TEST_ARGS)"
@${GO_TEST_COVERAGE} --config=.testcoverage.yml

# This clears all cached files and built artifacts.
# This clears all cached files, built artifacts and installed binaries.
#
# Whenever you run into issues with the target like `precommit` or `test`, try running this target.
.PHONY: clean
clean:
rm -rf $(OUTPUT_DIR)
rm -rf $(LOCALBIN)
go clean -modcache

# This builds a binary for the given command under the internal/cmd directory.
Expand Down

0 comments on commit c3a1722

Please sign in to comment.