fix: general code hygeine, fix failing tests, add housekeeping items, and clean up code base#5
Merged
RoseSecurity merged 10 commits intomainfrom Feb 6, 2026
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Why
This introduces improvements to project infrastructure, developer experience, and repository standards. The changes add standard project metadata, modernize and expand CI/CD workflows, introduce pre-commit hooks, enhance documentation, and improve code quality tooling
What
.copywrite.hclto define project license, copyright, and header ignore rules, establishing clear project metadata.CODE_OF_CONDUCT.md,CONTRIBUTING.md, andSECURITY.mdto set clear guidelines for contributor behavior, contribution process, and vulnerability reporting. [1] [2] [3].gitattributesto enforce consistent line endings across platforms..pre-commit-config.yamlwith hooks for code formatting, linting, YAML checks, and Go-specific checks; updatedBrewfileandMakefileto support pre-commit and new development workflows. [1] [2] [3].go-versionto standardize the Go version for all contributors.ci.yml) with a new, more granular workflow (tests.yml) that separates build and test jobs, ensures dependency caching, and provides coverage reporting. [1] [2]Makefilewith new targets for code formatting, linting, testing, coverage, dependency management, and vulnerability checks, making development tasks easier and more consistent.