Skip to content

Commit

Permalink
Merge pull request #20 from RevenueCat/circleci-project-setup
Browse files Browse the repository at this point in the history
CircleCI tests integration
  • Loading branch information
aboedo authored Apr 24, 2020
2 parents 2bc1058 + 46ad69a commit 1dbe9f2
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# For a detailed guide to building and testing on iOS, read the docs:
# https://circleci.com/docs/2.0/testing-ios/

version: 2.1

jobs:
build:

macos:
xcode: 11.4.0

steps:
- checkout
- run:
name: "Pull Submodules"
command: |
git submodule init
git submodule update --remote
- run:
name: Run tests
command: |
cd ios/PurchasesHybridCommon
pod install
fastlane scan
environment:
SCAN_SCHEME: PurchasesHybridCommonTests
- store_test_results:
path: test_output
- store_artifacts:
path: test_output
destination: scan-output

0 comments on commit 1dbe9f2

Please sign in to comment.