Created
August 22, 2019 17:08
-
-
Save kouki-dan/636743b017d73601905a836ecd69be40 to your computer and use it in GitHub Desktop.
GitHub Actions CI for iOS Apps
This file contains hidden or 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
# .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