Skip to content

fix(docs): Fix typo in file header #63

fix(docs): Fix typo in file header

fix(docs): Fix typo in file header #63

Workflow file for this run

name: publish
on: [push]
jobs:
run-tests:
name: Test
runs-on: macos-13
strategy:
matrix:
xcode: [14.3.1, 15.0.1]
destination:
[
'platform=iOS Simulator,name=iPhone 14 Pro',
]
steps:
- name: Checkout Repo
uses: actions/checkout@v2
- name: Setup Xcode
run: sudo xcode-select -s "/Applications/Xcode_${xcode}.app/Contents/Developer"
env:
xcode: ${{ matrix.xcode }}
- name: Run Tests
run: xcodebuild test -scheme DSKit -destination "${destination}"
env:
destination: ${{ matrix.destination }}