Initial Swift Package SPM support. Fixed flakey tests and updated res… #61
Workflow file for this run
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: Build | |
| on: | |
| push: | |
| branches-ignore: | |
| - master | |
| jobs: | |
| build: | |
| runs-on: macOS-latest | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v3 | |
| - name: Install Utilities | |
| run: | | |
| brew install automake | |
| brew install libtool | |
| - name: Install | |
| run: pod install | |
| - name: Build | |
| run: xcodebuild build-for-testing -workspace proj-ios.xcworkspace -scheme proj-ios -destination 'platform=iOS Simulator,OS=latest,name=iPhone 14' |