Modify a minor issue on AWAREFetchSizeAdjuster #133
Workflow file for this run
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: CI | |
on: [push] | |
jobs: | |
build: | |
runs-on: macos-latest | |
strategy: | |
matrix: | |
destination: ['platform=iOS Simulator,OS=16.2,name=iPhone 14 Pro'] | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Show Xcode version | |
run: xcodebuild -version | |
- name: Use Rosetta | |
run: arch -x86_64 uname -m | |
- name: Install gem | |
run: gem install cocoapods | |
- name: Update pod | |
run: (cd Example && pod update) | |
- name: Install pod | |
run: pod install --project-directory=Example | |
- name: Build | |
run: xcodebuild -sdk iphonesimulator -configuration Debug build | |
# - name: Test | |
# run: set -o pipefail && xcodebuild clean build-for-testing -enableCodeCoverage YES -workspace Example/AWAREFramework.xcworkspace -scheme AWAREFramework-Example -destination "${destination}" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO ONLY_ACTIVE_ARCH=NO | xcpretty | |
# env: | |
# destination: ${{ matrix.destination }} | |
- name: Dry-run | |
run: pod lib lint --allow-warnings --skip-import-validation | |