-
Notifications
You must be signed in to change notification settings - Fork 301
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] Migrate to GHA #328
[CI] Migrate to GHA #328
Conversation
73089da
to
bf0278a
Compare
c.logger.info("Struct2::doSomething") | ||
self.doSomethingElse(context: c) | ||
c.logger.debug("Struct2::doSomething::end") | ||
} | ||
|
||
private func doSomethingElse(context: Context) { | ||
var c = context | ||
c.logLevel = .debug // only effects from this point on | ||
c.logLevel = .debug // only effects from this point on |
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 wonder if there's a way to prevent those, it's somewhat silly to insert a double space... maybe there's a bug for it already?
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.
Filed an issue about it swiftlang/swift-format#868
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 wish the reformat was a single commit, it's very noisy to review. But looks okey AFAICS
Ok I think we're green on GH Actions now. I changed all the required checks as well. |
# Motivation We want to modernize our CI. # Modification This PR migrates to GH actions and turns on all the right flags. # Result Modern CI.
bf0278a
to
b20468d
Compare
Motivation
We want to modernize our CI.
Modification
This PR migrates to GH actions and turns on all the right flags.
Result
Modern CI.