You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
simplify Makefile by removing install, uninstall, tidy, dev-setup, help targets
Removed targets that are not core to build/test workflow:
- install/uninstall: System installation should be manual
- tidy: Direct go mod commands are clearer in workflows
- dev-setup: Too opinionated for a build tool
- help: Makefile is simple enough without help
Remaining focused targets:
- build: Build for current platform
- build-all: Cross-platform builds
- test: Run tests with race detection
- test-coverage: Generate coverage reports
- clean: Clean build artifacts
- fmt: Format code
- lint: Lint code
Updated GitHub Actions workflows to use direct Go commands
for dependency management instead of removed make tidy.
Updated RELEASES.md to reflect simplified Makefile.
Tested: make build && make test && make clean works correctly.
Co-authored-by: f0ssel <[email protected]>
0 commit comments