Skip to content

Commit

Permalink
Update swift.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
matolah committed Jul 10, 2023
1 parent 4080295 commit fd2e8df
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions .github/workflows/swift.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,17 @@ on:

jobs:
build:
runs-on: macos-13

runs-on: ${{ matrix.runsOn }}
env:
DEVELOPER_DIR: "/Applications/${{ matrix.xcode }}.app/Contents/Developer"
strategy:
matrix:
include:
- xcode: "Xcode_14.3"
runsOn: firebreak
name: "macOS 13, Xcode 14.3, Swift 5.8.0"
destination: "platform=iOS Simulator,OS=16.0,name=iPhone 14 Pro Max"
steps:
- uses: actions/checkout@v3
- name: Select Xcode
run: sudo xcode-select -s "/Applications/Xcode_14.3.app"
- name: Build and test ( iOS 16.0)
run: xcodebuild test -scheme "LeezyData" -destination "platform=iOS Simulator,OS=16.0,name=iPhone 14 Pro Max" -testPlan "LeezyData" clean test
- name: ${{ matrix.name }}
run: xcodebuild test -scheme "LeezyData" -destination "${{ matrix.destination }}" -testPlan "LeezyData" clean test

0 comments on commit fd2e8df

Please sign in to comment.