Skip to content

Commit

Permalink
fix: switching xcode versions
Browse files Browse the repository at this point in the history
  • Loading branch information
matinzd committed Aug 8, 2023
1 parent 325fe76 commit 55ecd67
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/ios-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,19 @@ on:

jobs:
build-and-test:
runs-on: macos-latest
runs-on: macos-12

strategy:
matrix:
xcode-version: [13.3, latest]
xcode-version: [13.3.1, 14.2]

steps:
- name: List all available XCode versions
run: ls -n /Applications/ | grep Xcode*

- name: Switch XCode Version
run: sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode-version }}.app/Contents/Developer

- name: Checkout Repository
uses: actions/checkout@v2

Expand Down

0 comments on commit 55ecd67

Please sign in to comment.