-
Notifications
You must be signed in to change notification settings - Fork 8
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
Github Actions #29
Merged
Merged
Github Actions #29
Changes from all commits
Commits
Show all changes
30 commits
Select commit
Hold shift + click to select a range
faed9b2
Actions
lickel b15d3c8
Downgrade
lickel 97824b9
hmm
lickel 6777d3e
ugh
lickel 8319e22
hmm
lickel 694c6cd
ug
lickel 333d5b2
again
lickel 21b249d
again
lickel abeff55
no concurrency
lickel 9c2014f
again
lickel 3a8b835
Concurrency
lickel 15979a3
One mor
lickel 7fef484
Fix
lickel 5a4f821
fix2
lickel 92dec5a
Redo
lickel 799a390
dep
lickel 67488eb
Better name
lickel 5606feb
Rename for badge
lickel 70974d4
Badge
lickel 535caa7
codecov
lickel 56f3f81
Tweak
lickel 3c8d499
Verbosity
lickel 7886b62
Wheee
lickel ee2ff95
Recurse
lickel 6a485bf
Try again
lickel bf44ab9
Move
lickel 74b7b4d
explicit
lickel c9e6e7a
Hack!
lickel 6c96c96
Remove dead CI
lickel 3f2dbfe
Strict linter
lickel File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
name: build | ||
|
||
on: | ||
push: | ||
branches: [main] | ||
pull_request: | ||
branches: | ||
|
||
concurrency: | ||
group: ${{ github.head_ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
build: | ||
strategy: | ||
matrix: | ||
platform: | ||
- iOS | ||
- tvOS | ||
#- watchOS | ||
- macOS | ||
runs-on: macos-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
- name: Build | ||
uses: mxcl/xcodebuild@v1 | ||
with: | ||
platform: ${{ matrix.platform }} | ||
scheme: FetchRequests-${{ matrix.platform }} | ||
action: test | ||
code-coverage: true | ||
- name: Code Coverage | ||
#uses: codecov/codecov-action@v2 | ||
run: bash <(curl -s https://codecov.io/bash); | ||
validate: | ||
runs-on: macos-latest | ||
needs: build | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
- name: Swift Lint | ||
run: swiftlint --strict | ||
- name: Pod Lint | ||
run: pod lib lint --quick --fail-fast --verbose --skip-tests | ||
- name: Example Project | ||
uses: mxcl/xcodebuild@v1 | ||
with: | ||
platform: iOS | ||
scheme: iOS Example | ||
action: build | ||
warnings-as-errors: true | ||
working-directory: Example |
This file was deleted.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
FetchRequests.xcodeproj/project.xcworkspace/contents.xcworkspacedata
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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 can't enable this until they rev macOS. It's pinned at 10.15, and thus not the latest Xcode.
macOS 11 is in a limited beta