-
Notifications
You must be signed in to change notification settings - Fork 64
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
1518 upversion lock #1519
1518 upversion lock #1519
Conversation
Time to use that fancy tech!! |
I think at the moment none of the R-CMD checks uses |
Not sure I am following. I'm pretty sure the lock file is used for the other checks: man, lintr and test coverage, but it is not used for the R-CMD checks |
In the past we used |
I don't believe the lock file is needed in the R-CMD check workflow anymore. I just did a quick scan, and I don't see it referenced anywhere. The lock file has lots of packages that don't need to be installed to run the R-CMD checks (i.e. the imports versus the suggests). I think this is why it was removed from this workflow https://github.com/pharmaverse/admiralci/blob/main/.github/workflows/r-cmd-check.yml |
OK, I see. |
On the other hand, in #1512 I used dplyr 1.0.0 functionality in one of the examples but forgot to update renv.lock. All R-CMD check passed (because they did not use |
@bundfussr made a separate issue. Can we update lock file? happy to discuss more |
It seems that the workflows are still using R 3.6 but I do not know why. @cicdguy , could you have a look. |
Co-authored-by: Dinakar <26552821+cicdguy@users.noreply.github.com>
Co-authored-by: Dinakar <26552821+cicdguy@users.noreply.github.com>
Ok, yes. Something is amiss. I am investigating. |
Ah, it's a GitHub shenanigan: actions/runner#1189 |
@bundfussr and @bms63 - we'll need to make similar changes everywhere for all |
Thanks @cicdguy ! I have created corresponding issues in admiraldev and admiralonco. |
@cicdguy , by the way, are you aware of the following warning occurring in "Normalize inputs"?
|
Yes, we are aware of this one and will resolve it at some point. |
Thank you for your Pull Request! We have developed this task checklist from the Development Process Guide to help with the final steps of the process. Completing the below tasks helps to ensure our reviewers can maximize their time on your code as well as making sure the admiral codebase remains robust and consistent.
Please check off each taskbox as an acknowledgment that you completed the task or check off that it is not relevant to your Pull Request. This checklist is part of the Github Action workflows and the Pull Request will not be merged into the
devel
branch until you have checked off each task.styler::style_file()
to style R and Rmd filesdevtools::document()
so all.Rd
files in theman
folder and theNAMESPACE
file in the project root are updated appropriatelyNEWS.md
if the changes pertain to a user-facing function (i.e. it has an@export
tag) or documentation aimed at users (rather than developers)pkgdown::build_site()
and check that all affected examples are displayed correctly and that all new functions occur on the "Reference" page.lintr::lint_package()
R CMD check
locally and address all errors and warnings -devtools::check()