Skip to content

Instantly share code, notes, and snippets.

@przemek-jablonski
Last active August 29, 2021 17:05
Show Gist options
  • Save przemek-jablonski/91115ce0a81100b052c80aa92d48df1f to your computer and use it in GitHub Desktop.
Save przemek-jablonski/91115ce0a81100b052c80aa92d48df1f to your computer and use it in GitHub Desktop.
jobs:
build-and-test:
strategy:
matrix:
xcodebuild-scheme: ['Core', 'UI', 'PushNotifications']
xcodebuild-command: ['build', 'test']
steps:
- name: Using the xcodebuild to ${{ matrix.xcodebuild-command }} the ${{ matrix.xcodebuild-scheme }} scheme.
run: xcodebuild ${{ matrix.xcodebuild-command }} -scheme ${{ matrix.xcodebuild-scheme }}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment