version bump 5.0.33 #96
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: Run Tests | |
on: | |
workflow_dispatch: | |
pull_request: | |
types: [ opened, synchronize ] | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: macos-12 | |
steps: | |
- name: Checkout project | |
uses: actions/checkout@v2 | |
- name: Build | |
run: xcodebuild build-for-testing -project AffirmSDK.xcodeproj -scheme AffirmSDK -destination "platform=iOS Simulator,name=iPhone 12" | |
- name: Test | |
run: xcodebuild clean test -project AffirmSDK.xcodeproj -scheme AffirmSDK -destination "platform=iOS Simulator,name=iPhone 12" |