Skip to content

add error handling for web view (#74) #54

add error handling for web view (#74)

add error handling for web view (#74) #54

Workflow file for this run

# This workflow will test the BobbysNews app.
name: Swift
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
tests:
runs-on: macos-14
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Xcode
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: latest
- name: Setup Swift
uses: swift-actions/setup-swift@v1
- name: Test iPhone 15 Pro
run: xcodebuild test -scheme BobbysNews -project BobbysNews.xcodeproj -destination 'platform=iOS Simulator,name=iPhone 15 Pro' | xcbeautify && exit ${PIPESTATUS[0]}
- name: Test iPad Pro (12.9-inch) (6th generation)
run: xcodebuild test -scheme BobbysNews -project BobbysNews.xcodeproj -destination 'platform=iOS Simulator,name=iPad Pro (12.9-inch) (6th generation)' | xcbeautify && exit ${PIPESTATUS[0]}