Skip to content

Instantly share code, notes, and snippets.

@kouki-dan
Created August 22, 2019 17:08
Show Gist options
  • Save kouki-dan/636743b017d73601905a836ecd69be40 to your computer and use it in GitHub Desktop.
Save kouki-dan/636743b017d73601905a836ecd69be40 to your computer and use it in GitHub Desktop.
GitHub Actions CI for iOS Apps
# .github/workflows/main.yml
name: CI
on: [push]
jobs:
build:
runs-on: macOS-10.14
steps:
- uses: actions/checkout@v1
- name: Run tests
run: |
sudo xcode-select -s /Applications/Xcode_10.3.app
bundle install
bundle exec fastlane test
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment