You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 29, 2025. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+37-2Lines changed: 37 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -70,8 +70,43 @@ Follow the [Conventional Commits](https://www.conventionalcommits.org/) specific
70
70
2. Ensure all tests pass and code meets the project's quality standards
71
71
3. Request reviews from team members
72
72
73
-
###CI/CD Pipeline
73
+
## CI/CD Pipeline
74
74
75
-
GitHub Actions will automatically run on your PR, checking build status, tests, and generating coverage reports. Review the CI/CD output in your PR before merging.
75
+
GitHub Actions will automatically run on your PR, checking build status, tests, and generating coverage reports. Review the CI/CD output in your PR before merging. The workflows are defined in `.github/workflows/`.
76
+
77
+
### Tool CI Workflow
78
+
79
+
- Triggered on pushes and PRs to the `tool` branch
80
+
- Builds the project, runs tests, and generates a coverage report
81
+
- Creates a release with changelog on merge to `tool`
82
+
83
+
### Plugin CI Workflow
84
+
85
+
- Triggered on pushes and PRs to the `plugin` branch
86
+
- Builds the plugin, runs tests, and generates a coverage report
87
+
- Creates a release with changelog on merge to `plugin`
88
+
89
+
90
+
### Coverage Reports
91
+
92
+
Coverage reports are generated as artifacts in GitHub Actions. Test cases and execution of test cases can be seen here too. To view a coverage report:
0 commit comments