Add iOS demo app for CowCodable #3
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: CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - master | |
| pull_request: | |
| jobs: | |
| sdk-and-demo-validation: | |
| runs-on: macos-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Show toolchain versions | |
| run: | | |
| swift --version | |
| xcodebuild -version | |
| - name: Build Swift package | |
| run: swift build | |
| - name: Test Swift package | |
| run: swift test | |
| - name: Build Demo app for iOS Simulator | |
| run: | | |
| xcodebuild \ | |
| -project DemoApp/CowCodableDemoApp/CowCodableDemoApp.xcodeproj \ | |
| -scheme CowCodableDemoApp \ | |
| -destination 'generic/platform=iOS Simulator' \ | |
| CODE_SIGNING_ALLOWED=NO \ | |
| build |