This file contains hidden or 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
| # ... | |
| jobs: | |
| build: | |
| # ... | |
| - name: Build | |
| run: | | |
| set -o pipefail | |
| xcodebuild build-for-testing \ | |
| -scheme iOSGitHubActions \ | |
| -destination 'platform=iOS Simulator,name=iPhone 11 Pro' \ |
This file contains hidden or 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
| #!/bin/bash | |
| # Build Command | |
| xcodebuild build-for-testing \ | |
| -scheme iOSGitHubActions \ | |
| -destination 'platform=iOS Simulator,name=iPhone 11 Pro' \ | |
| -derivedDataPath build \ | |
| | xcpretty | |
| # Test Command |
This file contains hidden or 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
| # ... | |
| jobs: | |
| build: | |
| #... | |
| test: | |
| name: Test Project | |
| needs: build | |
| runs-on: macOS-latest | |
| steps: |
This file contains hidden or 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
| # ... | |
| jobs: | |
| build: | |
| #... | |
| test: | |
| name: Test Project | |
| runs-on: macOS-latest | |
| steps: | |
| - name: Checkout repository |
This file contains hidden or 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
| #!/bin/bash | |
| xcodebuild test \ | |
| -scheme iOSGitHubActions \ | |
| -destination 'platform=iOS Simulator,name=iPhone 11 Pro' \ | |
| | xcpretty |
This file contains hidden or 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
| # ... | |
| jobs: | |
| build: | |
| name: Build Project | |
| runs-on: macOS-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v1 | |
| - name: Set Gems |
This file contains hidden or 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
| #!/bin/bash | |
| xcodebuild build \ | |
| -scheme iOSGitHubActions \ | |
| -destination 'platform=iOS Simulator,name=iPhone 11 Pro' |
This file contains hidden or 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: Run CI | |
| on: | |
| pull_request | |
| jobs: | |
| hello: | |
| name: Hello World | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Say Hello |
This file contains hidden or 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: Run CI | |
| on: | |
| pull_request |
This file contains hidden or 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
| public class ClassTest: NSObject { | |
| public override init() { | |
| super.init() | |
| print(" >>>> INIT from \(self)") | |
| } | |
| deinit { | |
| print(" >>>> DEINIT from \(self)") | |
| } |