Skip to content

Commit

Permalink
bump macos and xcode version
Browse files Browse the repository at this point in the history
  • Loading branch information
wendyliga committed Jan 15, 2024
1 parent 1263ec3 commit ca6cd17
Showing 1 changed file with 21 additions and 9 deletions.
30 changes: 21 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ jobs:
strategy:
matrix:
xcode:
- '13.4.1'
- '14.1'
runs-on: macos-12
- '14.3.1'
- '15.0.1'
runs-on: macos-13
steps:
- uses: actions/checkout@v3
- name: Select Xcode ${{ matrix.xcode }}
Expand All @@ -29,9 +29,9 @@ jobs:
strategy:
matrix:
xcode:
- '13.4.1'
- '14.1'
runs-on: macos-12
- '14.3.1'
- '15.0.1'
runs-on: macos-13
steps:
- uses: actions/checkout@v3
- name: Select Xcode ${{ matrix.xcode }}
Expand All @@ -40,18 +40,30 @@ jobs:
run: make test-library

unit_test_example:
runs-on: macos-12
strategy:
matrix:
xcode:
- '14.3.1'
- '15.0.1'
runs-on: macos-13
steps:
- uses: actions/checkout@v3
- name: Selext Xcode ${{ matrix.xcode }}
run: sudo xcode-select -s /Applications/Xcode_14.1.app
run: sudo xcode-select -s /Applications/Xcode_${{ matrix.xcode }}.app
- name: Run tests
run: make test-example

lint_podspec:
runs-on: macos-12
strategy:
matrix:
xcode:
- '14.3.1'
- '15.0.1'
runs-on: macos-13
steps:
- uses: actions/checkout@v3
- name: Selext Xcode ${{ matrix.xcode }}
run: sudo xcode-select -s /Applications/Xcode_14.1.app
- name: Install cocoapods
run: sudo gem install cocoapods
- name: Lint podspec
Expand Down

0 comments on commit ca6cd17

Please sign in to comment.