Skip to content

Instantly share code, notes, and snippets.

@mcz9mm
Last active November 16, 2019 01:33
Show Gist options
  • Save mcz9mm/e1b75a71e18029ec2c6a927419b8d1f4 to your computer and use it in GitHub Desktop.
Save mcz9mm/e1b75a71e18029ec2c6a927419b8d1f4 to your computer and use it in GitHub Desktop.
GitHub Actions for iOS
name: Swift
on: [push]
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v1
- name: Select Xcode version
run: sudo xcode-select -s '/Applications/Xcode_11.app/Contents/Developer'
- name: Show Xcode version
run: xcodebuild -version
- name: Install CocoaPods
run: pod install
- name: Build
run: xcodebuild -sdk iphonesimulator -configuration Debug build
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment