Skip to content

更新 Workflow

更新 Workflow #69

Workflow file for this run

name: Swift
on:
push:
branches:
- main
jobs:
build:
runs-on: macos-15
steps:
- uses: actions/checkout@v4
- name: Select Xcode
run: sudo xcode-select -switch /Applications/Xcode_16.4.app && /usr/bin/xcodebuild -version
- name: Run tests
run: xcodebuild test -scheme JsonDecodeProtection -project JsonDecodeProtection.xcodeproj -destination 'platform=iOS Simulator,name=iPhone 16,OS=18.6' | xcpretty && exit ${PIPESTATUS[0]}