Update suzuki-shunsuke/github-action-renovate-config-validator action to v1.1.0 #210
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: ci | |
on: # Rebuild any PRs and main branch changes | |
push: | |
branches: | |
- main | |
- develop | |
pull_request: | |
jobs: | |
test-vsm: | |
runs-on: macos-14 | |
steps: | |
- name: Prepare Xcode | |
uses: maxim-lobanov/setup-xcode@v1 # https://github.com/marketplace/actions/setup-xcode-version | |
with: | |
xcode-version: 15.2.0 | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Build and Test VSM on macOS (Intel) | |
uses: sersoft-gmbh/xcodebuild-action@v3 # https://github.com/marketplace/actions/xcodebuild-action | |
with: | |
spm-package: ./ | |
scheme: VSM | |
destination: platform=macOS,arch=x86_64 | |
action: test | |
- name: Build and Test VSM on Mac Catalyst (Intel) | |
uses: sersoft-gmbh/xcodebuild-action@v3 # https://github.com/marketplace/actions/xcodebuild-action | |
with: | |
spm-package: ./ | |
scheme: VSM | |
destination: platform=macOS,arch=x86_64,variant=Mac Catalyst | |
action: test | |
- name: Build and Test VSM on iOS | |
uses: sersoft-gmbh/xcodebuild-action@v3 # https://github.com/marketplace/actions/xcodebuild-action | |
with: | |
spm-package: ./ | |
scheme: VSM | |
destination: platform=iOS Simulator,OS=17.0.1,name=iPhone 15 | |
action: test | |
- name: Build and Test VSM on watchOS | |
uses: sersoft-gmbh/xcodebuild-action@v3 # https://github.com/marketplace/actions/xcodebuild-action | |
with: | |
spm-package: ./ | |
scheme: VSM | |
destination: platform=watchOS Simulator,OS=10.0,name=Apple Watch Series 9 (45mm) | |
action: test | |
- name: Build and Test VSM on tvOS | |
uses: sersoft-gmbh/xcodebuild-action@v3 # https://github.com/marketplace/actions/xcodebuild-action | |
with: | |
spm-package: ./ | |
scheme: VSM | |
destination: platform=tvOS Simulator,OS=17.0,name=Apple TV 4K (3rd generation) (at 1080p) | |
action: test | |
- name: Build and Test VSM on visionOS | |
uses: sersoft-gmbh/xcodebuild-action@v3 # https://github.com/marketplace/actions/xcodebuild-action | |
with: | |
spm-package: ./ | |
scheme: VSM | |
destination: platform=visionOS Simulator,OS=1.0,name=Apple Vision Pro | |
action: test | |
# The following jobs are disabled until further notice to unblock work | |
# Xcode currently has UI test runtime issues since Xcode 14.3 | |
# These UI tests should be run manually by engineers until the Xcode runtime issues are resolved | |
# test-swiftui-demo-app: | |
# runs-on: macos-13 | |
# steps: | |
# - name: Prepare Xcode | |
# uses: maxim-lobanov/setup-xcode@v1 # https://github.com/marketplace/actions/setup-xcode-version | |
# with: | |
# xcode-version: 14.3.1 # Xcode 15 has UI test runtime issues | |
# - name: Checkout | |
# uses: actions/checkout@v4 | |
# - name: Build and Test Demo App | |
# uses: sersoft-gmbh/xcodebuild-action@v2 # https://github.com/marketplace/actions/xcodebuild-action | |
# with: | |
# project: ./Demos/Shopping/Shopping.xcodeproj | |
# scheme: Shopping | |
# destination: platform=iOS Simulator,OS=17.0.1,name=iPhone 14 | |
# action: test | |
# test-uikit-demo-app: | |
# runs-on: macos-13 | |
# steps: | |
# - name: Prepare Xcode | |
# uses: maxim-lobanov/setup-xcode@v1 # https://github.com/marketplace/actions/setup-xcode-version | |
# with: | |
# xcode-version: 14.3.1 # Xcode 15 has UI test runtime issues | |
# - name: Checkout | |
# uses: actions/checkout@v4 | |
# - name: (UIKit) Build and Test Demo App | |
# uses: sersoft-gmbh/xcodebuild-action@v2 # https://github.com/marketplace/actions/xcodebuild-action | |
# with: | |
# project: ./Demos/Shopping/Shopping.xcodeproj | |
# scheme: Shopping - UIKit | |
# destination: platform=iOS Simulator,OS=17.0.1,name=iPhone 14 | |
# action: test |