Revert version numbers to 3.12.1 to match 4.0.0-alpha.0 base #1116
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: Unit tests | |
| on: | |
| push: | |
| pull_request: | |
| branches: | |
| - master | |
| jobs: | |
| verify: | |
| runs-on: macos-15 | |
| timeout-minutes: 20 | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v4 | |
| - name: Run unit tests | |
| run: | | |
| echo "branch=${{ github.ref }}" >> $GITHUB_OUTPUT | |
| ./scripts/getSimulator | |
| DESTINATION="platform=iOS Simulator,name=$(cat ./iphoneSim),OS=latest" | |
| xcodebuild test \ | |
| -project BranchSDK.xcodeproj \ | |
| -scheme BranchSDKTests \ | |
| -destination "$DESTINATION" \ | |
| -testPlan BranchSDKTests | xcpretty && exit ${PIPESTATUS[0]} |