Skip to content

更新 README

更新 README #50

Workflow file for this run

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