Improve CI workflow with Go version matrix, fail-fast and clarity improvements#74
Open
Danielkis97 wants to merge 2 commits intomitosis-org:mainfrom
Open
Improve CI workflow with Go version matrix, fail-fast and clarity improvements#74Danielkis97 wants to merge 2 commits intomitosis-org:mainfrom
Danielkis97 wants to merge 2 commits intomitosis-org:mainfrom
Conversation
add Go version matrix and fail-fast toggle for multi-version testing
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Contributor
There was a problem hiding this comment.
Pull Request Overview
This PR enhances the CI workflow by implementing a matrix testing strategy across multiple Go versions and improving workflow readability. The changes focus on testing compatibility across Go versions 1.20.x through 1.23.x while making the CI process more resilient to individual failures.
- Implements matrix testing for Go versions 1.20.x, 1.21.x, 1.22.x, and 1.23.x
- Adds fail-fast: false to prevent one version failure from stopping all other tests
- Improves step naming consistency and clarity throughout the workflow
Comments suppressed due to low confidence (1)
.github/workflows/ci.yml:16
- Go version 1.23.x does not exist yet. The latest stable Go version is 1.22.x. Consider removing 1.23.x from the matrix or verify if this version has been released.
go-version: [1.20.x, 1.21.x, 1.22.x, 1.23.x]
Contributor
|
We do not modify workflow until mainnet launch. |
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.
This PR improves the
.github/workflows/ci.ymlfile by:1.20.x,1.21.x,1.22.xfail-fast: falseto allow debugging multiple failures at oncename:fieldsThese changes improve resilience and visibility in the CI process and help detect version-specific regressions early.