Add common workflows and files #74
Merged
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 introduces several configuration changes, including updates to the
.editorconfig
file, the addition of new GitHub workflow files, and the removal of the.travis.yml
file. The most important changes include the creation of a unified.editorconfig
, the addition of various GitHub Actions workflows, and the removal of the Travis CI configuration.Configuration updates:
.editorconfig
file to enforce consistent coding styles across the project. This includes settings for character encoding, end-of-line characters, final newline insertion, trailing whitespace trimming, and indentation styles. (.editorconfig
)GitHub Actions workflows:
.github/workflows/ci.yml
to handle Go unit tests and draft release creation. This workflow runs on pushes and pull requests to the master branch and supports multiple Go versions. (.github/workflows/ci.yml
).github/workflows/codeql.yml
to perform CodeQL analysis on the codebase. This workflow runs on pushes, pull requests to the master branch, and on a weekly schedule. (.github/workflows/codeql.yml
).github/workflows/dependency-review.yml
to perform dependency reviews on pull requests to the master branch. (.github/workflows/dependency-review.yml
).github/workflows/labeler.yml
to automatically label pull requests based on their content. (.github/workflows/labeler.yml
)Removal of Travis CI configuration:
.travis.yml
file, effectively discontinuing the use of Travis CI for continuous integration. (.travis.yml
)