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 multiple GitHub Actions workflows for CI/CD automation, updates the application styling in
FinTrack, and removes unused configuration code. Below is a categorized summary of the most important changes:CI/CD Automation Enhancements:
Build and Testworkflow to automatically build the project, restore dependencies, and run tests on every push or pull request to themainbranch. (.github/workflows/build-and-test.yml, .github/workflows/build-and-test.ymlR1-R32)Commit Message Format Checkworkflow to validate commit messages against a conventional format. (.github/workflows/commit-message-check.yml, .github/workflows/commit-message-check.ymlR1-R36)Dependabot PR Testworkflow to automatically test pull requests created by Dependabot. (.github/workflows/dependabot-pr-test.yml, .github/workflows/dependabot-pr-test.ymlR1-R22)Format Checkworkflow to verify that the code adheres to formatting rules usingdotnet format. (.github/workflows/format-check.yml, .github/workflows/format-check.ymlR1-R24)Secret Scanworkflow using Gitleaks to detect sensitive information in the codebase. (.github/workflows/secret-scan.yml, .github/workflows/secret-scan.ymlR1-R23)Application Styling Updates:
App.xamlto include a modern styles resource dictionary (Styles/ModernStyles.xaml) for improved UI design. (FinTrack/App.xaml, FinTrack/App.xamlL4-R10)Code Cleanup:
Microsoft.Extensions.Configuration, and replaced it with a simplified startup that directly launches theLoginWindow. (FinTrack/App.xaml.cs, FinTrack/App.xaml.csL1-L30)