Add Workflows to the Project #7
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.
Describe your changes
This pull request includes several changes to the GitHub workflows and configuration files to improve the build and formatting processes. The most important changes include the addition of workflows for building the project, formatting code, and creating releases, as well as the introduction of a new
.clang-formatconfiguration.GitHub workflows:
.github/workflows/build.yml: Added a workflow to build the project on multiple operating systems (Ubuntu, Windows, and macOS)..github/workflows/release-tag.yml: Added a workflow to create a pre-release when a tag is pushed to the repository, including building the project on multiple operating systems and uploading the build artifacts.Code formatting:
.github/workflows/clang-format-dispatch.yml: Added a workflow to apply Clang formatting corrections, which can only be run by administrators..github/workflows/clang-format-pr.yml: Added a workflow to check Clang formatting on pull requests and comment on the PR with the results..clang-format: Introduced a new Clang format configuration file based on Google's style, with specific settings for indentation width and column limit.Tested platforms