-
Notifications
You must be signed in to change notification settings - Fork 35
Adding KtLint #116
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
Adding KtLint #116
Conversation
Renamed backgroundDispatcher to BackgroundDispatcher
.github/workflows/build.yml
Outdated
| - name: Run Gradle Build | ||
| run: ./gradlew build --no-daemon --stacktrace --no-build-cache | ||
| run: ./gradlew ktlintCheck build --no-daemon --stacktrace --no-build-cache |
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.
build includes check, and since we configured check to depend on ktlintCheck, we don't need to specify it explicitly here.
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.
reverted it
| jobs: | ||
| deploy: | ||
| runs-on: macos-latest | ||
| runs-on: macos-13 |
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 had to change this because I was getting this issue:
Underlying error (domain=NSPOSIXErrorDomain, code=86): The operation couldn’t be completed. Bad CPU type in executable Bad CPU type in executable
when running WatchOS tests
No description provided.