This repository has been archived by the owner on Apr 1, 2024. It is now read-only.
Bump version to v1.4.2 #232
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: 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 |