Merged
Conversation
2494896 to
882d7a9
Compare
Codecov ReportPatch coverage has no change and project coverage change:
Additional details and impacted files@@ Coverage Diff @@
## main #903 +/- ##
==========================================
- Coverage 56.10% 55.91% -0.19%
==========================================
Files 66 66
Lines 10705 10705
==========================================
- Hits 6006 5986 -20
- Misses 3831 3848 +17
- Partials 868 871 +3 ☔ View full report in Codecov by Sentry. |
Bidon15
approved these changes
Apr 26, 2023
Contributor
tzdybal
approved these changes
Apr 27, 2023
Signed-off-by: Smuu <18609909+Smuu@users.noreply.github.com>
Signed-off-by: Smuu <18609909+Smuu@users.noreply.github.com>
Signed-off-by: Smuu <18609909+Smuu@users.noreply.github.com>
741006a to
4db6a34
Compare
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.
Part of EPIC https://github.com/celestiaorg/devops/issues/112
These changes enhance the project's CI/CD pipeline, streamline the linting and testing process, and add new checks and tasks to the workflows.
Here's a summary of the changes:
.github/workflows/ci_release.ymlis created. This workflow is responsible for linting, testing, and releasing the project. It is triggered on push to the main branch, version tags, and pull requests. The workflow also accepts manual triggers with inputs for the new version's semantic version type (major, minor, or patch)..github/workflows/docker-build-da-mockserv.ymlis updated to change the tags regex for triggering the workflow..github/workflows/lint.ymlis modified to change the triggers to a workflow_call. This means that the workflow is now meant to be called by other workflows instead of triggered directly by events likepushorpull_request. Also, a new job,protobuf-lintis added to this workflow..github/workflows/proto.ymlis created. This workflow checks if the generated protobuf code matches the committed code. It is also triggered by aworkflow_call..github/workflows/test.ymlis updated to change the workflow name and triggers to aworkflow_call. It also adds new jobs:go_mod_tidy_check,test_coverage,unit_test, unit_race_test, andintegration_test..gitignorefile is updated to ignore thecoverage.txtfile.Makefileis created, which provides various commands for generating code coverage reports, running unit tests, running unit tests with data race detector, and generating and linting protobuf files.buf.yamlfile is updated to add more lint rules and ignore the tendermint directory.These changes enhance the project's CI/CD pipeline, streamline the linting and testing process, and add new checks and tasks to the workflows.
Closes https://github.com/celestiaorg/devops/issues/257, closes https://github.com/celestiaorg/devops/issues/258, closes https://github.com/celestiaorg/devops/issues/259
Closes #804