ci: add github action for building on minimum supported version #11
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: Unit Test | |
on: | |
pull_request: | |
permissions: {} | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
unit-test: | |
name: "[${{ matrix.os }}] Unit Test" | |
environment: Unit Test # TODO(5d): remove this line after repo is marked as public | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- scheme: AWSAppSyncApolloExtensions | |
os: iOS | |
sdk: iphonesimulator | |
destination: platform=iOS Simulator,name=iPhone 15,OS=latest | |
- scheme: AWSAppSyncApolloExtensions | |
os: macOS | |
sdk: macosx | |
destination: platform=OS X,arch=x86_64 | |
- scheme: AWSAppSyncApolloExtensions | |
os: watchOS | |
sdk: watchsimulator | |
destination: platform=watchOS Simulator,name=Apple Watch Series 9 (45mm),OS=latest | |
- scheme: AWSAppSyncApolloExtensions | |
os: tvOS | |
sdk: appletvsimulator | |
destination: platform=tvOS Simulator,name=Apple TV 4K (3rd generation),OS=latest | |
runs-on: macos-14 | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
with: | |
persist-credentials: false | |
token: ${{ secrets.PAT }} # TODO(5d): remove this line after repo is marked as public | |
- name: ${{ matrix.os }} | |
run: | | |
xcodebuild test \ | |
-scheme ${{ matrix.scheme }} \ | |
-destination "${{ matrix.destination }}" \ | |
-sdk ${{ matrix.sdk }} \ | |
-only-testing:"${{ matrix.scheme }}Tests" | xcpretty --simple --color --report junit && exit ${PIPESTATUS[0]} |