December 2018
Intermediate to advanced
414 pages
10h 19m
English
Now that we have both a test and a beta lane, you will likely want to run tests on all pull requests and changes, and deploy to testflight when it reaches the master branch or when a tag is created on the repository.
This configuration can be simply set in the .travis.yml configuration file:
language: objective-cosx_image: xcode10.1install: bundle installjobs: include: - stage: tests script: fastlane test - stage: release deploy: provider: script script: fastlane beta on: tags: true
Let's review the code in the preceding snippet of the .travis.yml file:
Read now
Unlock full access