chore(readme): Update install instructions #60
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: 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 }} |