Skip to content
This repository has been archived by the owner on Apr 1, 2024. It is now read-only.

iOS17を対応環境追加 #227

iOS17を対応環境追加

iOS17を対応環境追加 #227

Workflow file for this run

name: Swift
on:
push:
pull_request:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: macOS-latest
steps:
- uses: actions/checkout@v3
- name: Select Xcode version
run: sudo xcode-select -s '/Applications/Xcode_14.2.app/Contents/Developer'
- name: Build
run: xcodebuild
-scheme NCMB
CODE_SIGNING_ALLOWED=NO
-configuration Debug
build
- name: Run tests
run: xcodebuild
-scheme NCMBTests
-sdk iphonesimulator
-destination 'platform=iOS Simulator,name=iPhone 14'
clean test