-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix/ci issues #98
Fix/ci issues #98
Conversation
CI isses fixed |
@@ -27,6 +27,7 @@ jobs: | |||
with: | |||
profile: minimal | |||
toolchain: ${{ env.RUST_MSRV }} | |||
default: true |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a bummer that without this line MSRV (minimum supported Rust version) was not really using the toolchain specified in Cargo.toml, but rather only installed it on a side. Now, MSRV tests fail, which indicate that we need to update the version in Cargo.toml to the version that supports all the necessary features.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@ghimire007 Please, update MSRV in Cargo.toml to the minimum required one and make sure CI is green
@frol MSRV in cargo.toml updated |
@ghimire007 Is it really the minimum required version to compile cargo-near? |
@frol 1.60.0 is seems to be minimum version required to compile. Cargo.toml now has version 1.60.0 . |
Ci issues related to audit ,clippy and tests fixed