Introduce BufferedOutput.sendBufferedLog #44
Workflow file for this run
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
name: Puree | |
on: [push, pull_request] | |
jobs: | |
iOS: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Run Tests with Xcode | |
run: | | |
DESTINATION="platform=iOS Simulator,name=iPhone 8" SCHEME="Puree" | |
xcodebuild test -project Puree.xcodeproj -scheme "${SCHEME}" -destination "${DESTINATION}" | |
SwiftPM: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Run Tests with Swift Package Manager | |
run: swift test -Xswiftc "-target" -Xswiftc "x86_64-apple-macosx10.12" | |
SwiftLint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: SwiftLint | |
uses: norio-nomura/[email protected] | |
with: | |
args: --strict | |
CocoaPodsLint: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Dependencies | |
run: | | |
gem install cocoapods | |
pod repo update | |
- name: CocoaPods | |
run: pod lib lint --allow-warnings |