-
Notifications
You must be signed in to change notification settings - Fork 176
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
ci: add msrv check job #1522
base: master
Are you sure you want to change the base?
ci: add msrv check job #1522
Conversation
Signed-off-by: Lakshya Singh <lakshay.singh1108@gmail.com>
uses: actions-rs/toolchain@v1.0.7 | ||
with: | ||
profile: minimal | ||
toolchain: 1.74.0 |
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.
I missed this at first so maybe just to make it obvious:
toolchain: 1.74.0 | |
# Check that tests pass using our MSRV: | |
toolchain: 1.74.0 |
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.
Looks overall good but the UI tests won't pass for all rustc compilers down to 1.74.0
Either just type-check the code with 1.74.0 or disable the tests in the proc-macro-crate
.
@niklasad1 what do you mean by type check? As in build? |
|
related to #1520