Updated changelog log for visionOS support #3
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Tests the SDK | |
permissions: | |
checks: write | |
pull-requests: write | |
on: | |
push: | |
branches: | |
- master | |
- staging | |
pull_request: | |
branches: | |
- master | |
- staging | |
jobs: | |
test-ios: | |
runs-on: macos-latest | |
strategy: | |
fail-fast: false | |
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' |