-
Notifications
You must be signed in to change notification settings - Fork 189
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 minimal versions check #1039
base: master
Are you sure you want to change the base?
Conversation
Related to RustCrypto#1038
Note that as we're working on prereleases we tend to disable these checks as they're not particularly compatible with things like |
Makes sense. That said, would you prefer to have a failing check to ignore or a missing check to forget for this? I've updated the workflow to point at the the standard shared action - feel free to close this though if the idea is incompatible with your general use case. I see that the call to minimal versions is commented out in at least one other repo (with a note to re-enable upon release), perhaps this is an approach that's somewhere in the middle. |
It will definitely require some tuning as |
Adding an initial
Edit: the |
Yeah, those are the sorts of failures we get during prereleases which lead us to shut these checks off until we're off prerelease versions. Here's an example of the checks disabled: https://github.com/RustCrypto/traits/blob/master/.github/workflows/elliptic-curve.yml#L60-L62 |
Related to #1038