Conversation
|
This pull request sets up GitHub code scanning for this repository. Once the scans have completed and the checks have passed, the analysis results for this pull request branch will appear on this overview. Once you merge this pull request, the 'Security' tab will show more code scanning analysis results (for example, for the default branch). Depending on your configuration and choice of analysis tool, future pull requests will be annotated with code scanning analysis results. For more information about GitHub code scanning, check out the documentation. |
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.
This pull request includes several significant changes to the configuration and workflows of the project. The changes focus on adding new GitHub Actions workflows, updating the README file, and removing the Travis CI configuration.
Configuration and Workflow Updates:
.editorconfig: Added configuration to enforce consistent coding styles, including charset, end-of-line, and indentation settings..github/release.yml: Added a release configuration to categorize changes and exclude specific labels from the changelog..github/workflows/ci.yml: Introduced a new CI workflow to build and test the project on different Go versions, and create/update draft releases..github/workflows/codeql.yml: Added CodeQL analysis workflow to perform security and quality checks on the codebase..github/workflows/dependency-review.yml: Added a dependency review workflow to analyze dependencies on pull requests..github/workflows/labeler.yml: Added a pull request labeler workflow to automatically label pull requests based on their content.Documentation Updates:
README.md: Updated the badges to reflect the new CI status, Go Report Card, and Go version. Also, improved the section headers for serialization and deserialization examples. [1] [2] [3] [4]Removal of Travis CI:
.travis.yml: Removed the Travis CI configuration as the project has transitioned to GitHub Actions for continuous integration.