chore(v9): release 9.8.0 (#387) #131
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: Run CI | |
on: | |
push: | |
branches: [ v9, 'feat/**' ] | |
paths-ignore: | |
- '**.md' # Do not need to run CI for markdown changes. | |
pull_request: | |
branches: [ v9, 'feat/**' ] | |
paths-ignore: | |
- '**.md' | |
jobs: | |
macos-build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- xcode-version: 15.0.1 | |
ios-sim: 'platform=iOS Simulator,name=iPhone 15,OS=17.2' | |
os: macos-13 | |
run-contract-tests: true | |
- xcode-version: 14.3.1 | |
ios-sim: 'platform=iOS Simulator,name=iPhone 14,OS=16.4' | |
os: macos-13 | |
run-contract-tests: true | |
- xcode-version: 13.4.1 | |
ios-sim: 'platform=iOS Simulator,name=iPhone 11,OS=15.5' | |
os: macos-12 | |
run-contract-tests: false | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 # If you only need the current version keep this. | |
- uses: ./.github/actions/ci | |
with: | |
xcode-version: ${{ matrix.xcode-version }} | |
ios-sim: ${{ matrix.ios-sim }} | |
run-contract-tests: ${{ matrix.run-contract-tests }} | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- uses: ./.github/actions/build-docs |