Skip to content

Commit

Permalink
add GitHub workflow for testing iOS target
Browse files Browse the repository at this point in the history
  • Loading branch information
alexdmotoc committed Aug 25, 2023
1 parent ecb5dbe commit 6b59224
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/CI_iOS.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: CI_iOS

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

jobs:
build-and-test:

runs-on: macos-13

timeout-minutes: 10

steps:
- uses: actions/checkout@v3

- name: Build and test
run: xcodebuild clean build test -project WeatherApp.xcodeproj -scheme "CI_iOS" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO -sdk iphonesimulator -destination "platform=iOS Simulator,name=iPhone 14,OS=16.4" ONLY_ACTIVE_ARCH=YES

0 comments on commit 6b59224

Please sign in to comment.