Skip to content

Merge pull request #69 from RomanPodymov/main #16

Merge pull request #69 from RomanPodymov/main

Merge pull request #69 from RomanPodymov/main #16

Workflow file for this run

name: Test
on:
push:
branches:
- main
- develop
- release
jobs:
test:
name: Test
runs-on: macos-latest
strategy:
matrix:
destination: ["platform=iOS Simulator,OS=13.5,name=iPhone 11"]
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Build and test
run: xcodebuild clean test -project KIImagePager.xcodeproj -scheme KIImagePager -destination "${destination}" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO ONLY_ACTIVE_ARCH=NO
env:
destination: ${{ matrix.destination }}