Fixed task hang up in shellInternal due to unread error pipe. #327
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: CI | |
on: [pull_request] | |
jobs: | |
SwiftLint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: SwiftLint | |
uses: norio-nomura/[email protected] | |
with: | |
args: --strict | |
macOS: | |
runs-on: macos-12 | |
env: | |
XCODE_VERSION: ${{ '14.2' }} | |
steps: | |
- name: Select Xcode | |
run: "sudo xcode-select -s /Applications/Xcode_$XCODE_VERSION.app" | |
- name: Checkout | |
uses: actions/checkout@v1 | |
- name: Build and Run | |
run: rake build[release] | |
- name: Test | |
run: rake test | |
- name: E2ETests | |
run: rake e2e_only |