Skip to content

Updated changelog log for visionOS support #2

Updated changelog log for visionOS support

Updated changelog log for visionOS support #2

Workflow file for this run

name: XCTest
on:
push:
branches:
- master
- staging
pull_request:
branches:
- master
- staging
jobs:
test-ios:
runs-on: macos-latest
steps:
# Checkout the repository
- name: Checkout repository
uses: actions/checkout@v4
# Install any dependencies
- name: Install Dependencies
run: swift package resolve
# Run tests on iPhone 14 Simulator with iOS 16.0
- name: Run Tests on iPhone 14 Simulator (iOS 16.0)
run: |
xcodebuild test \
-scheme 'CountlyTests' \
-destination 'platform=iOS Simulator,name=iPhone 14,OS=16.0'