Skip to content

Test

Test #2

Workflow file for this run

name: Test
on:
workflow_dispatch:
push:
tags:
- "*.*.*"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
name: Test
runs-on: macos-15
timeout-minutes: 30
env:
DEVELOPER_DIR: "/Applications/Xcode_16.2.app/Contents/Developer"
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Show Xcode Version
run: xcodebuild -version
- name: Run Unit Tests
run: |
xcodebuild test \
-scheme KintoneAPI \
-destination "platform=macOS" \
-derivedDataPath DerivedData \
-resultBundlePath TestResults | \
xcbeautify && exit ${PIPESTATUS[0]}