-
Notifications
You must be signed in to change notification settings - Fork 10
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
fresher GHA workflows #73
Conversation
_R_CHECK_TESTS_NLINES_: 0 | ||
|
||
steps: | ||
- name: Configure git |
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.
Why was this step needed? Should I add it back?
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.
Some issue with line endings on windows (\r\n
stuff), and setting this git config would make it just be \n
. This was important because some tests comparing against recorded mocks would fail otherwise. But maybe the default has been fixed? Tests seem to pass without it right?
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.
Yes all green but I can add it back with a comment if you prefer.
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.
Nah, we should delete if it's no longer needed.
.github/workflows/R-CMD-check.yaml
Outdated
- {os: windows-latest, r: 'release'} | ||
# Use 3.6 to trigger usage of RTools35 |
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.
Do you think we need to mess with rtools35 here? There's no compiled code.
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've now removed it.
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.
Thanks so much for doing this!
Fix #72