-
Notifications
You must be signed in to change notification settings - Fork 5
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
Enable github action runners #1537
Conversation
Thanks for the review @senderista |
@@ -61,7 +61,7 @@ def get_base_stages_text(self) -> str: | |||
""" | |||
|
|||
base_stages_text = dedent( | |||
fr""" |
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.
What is this change for?
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 string prefix was flagged as a lint error when I had to upgrade our version of black
. The old version of black on the github action runners had a dependency such that we couldn't run the python linter and the fix was to upgrade to the latest version. (change is in .pre-commit-config.yaml
).
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 for the explanation! And what do these letters stand for, if they stand for anything?
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.
They designate "format" f
and "raw" r
strings in python. Here is an explanation.
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.
Just got one question, nothing blocking.
When we flip the repo from private to public, we can use github action runners instead of our own self-hosted ones. These changes enable running our jobs on the public runners.
PLEASE DO NOT MERGE UNTIL WE MOVE THE REPO FROM PRIVATE TO PUBLIC.