Skip to content

Commit

Permalink
[feat]: Fix macOS versions
Browse files Browse the repository at this point in the history
  • Loading branch information
johnkodes committed Jan 17, 2024
1 parent 5f82211 commit b8f60c0
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ jobs:
- name: 'MacOS 13, Xcode 15.1, Swift 5.9.0'
xcode: 'Xcode_15.1'
runsOn: 'macos-13'
- name: 'MacOS 12, Xcode 14.3.1, Swift 5.8.0'
- name: 'MacOS 13, Xcode 14.3.1, Swift 5.8.0'
xcode: 'Xcode_14.3.1'
runsOn: 'macos-12'
runsOn: 'macos-13'
steps:
- uses: actions/checkout@v4

Expand All @@ -52,9 +52,12 @@ jobs:
- name: 'iOS 16.4'
destination: 'OS=16.4,name=iPhone 14 Pro'
xcode: 'Xcode_14.3.1'
runsOn: macos-12
runsOn: macos-13
steps:
- uses: actions/checkout@v4

- name: ${{ matrix.name }}
run: set -o pipefail && xcodebuild -scheme "Networking" -destination "${{ matrix.destination }}" clean test 2>&1 | xcpretty
run: |
set -o pipefail && \
xcodebuild -skipPackagePluginValidation -scheme "Networking" -destination "${{ matrix.destination }}" clean test | xcpretty

0 comments on commit b8f60c0

Please sign in to comment.