Skip to content

Support categories

Support categories #92

Workflow file for this run

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"