Skip to content

Commit

Permalink
Publish test results to Code cov
Browse files Browse the repository at this point in the history
And add descriptions to other build steps
  • Loading branch information
readefries committed Oct 2, 2020
1 parent 0f0446c commit 5254e70
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,20 +11,20 @@ pool:

steps:
- task: Bash@3
displayName: 'Install Bundler'
inputs:
targetType: 'inline'
script: |
# Install Bundler
gem install bundler
- task: Bash@3
displayName: 'Install and updage carthage'
inputs:
targetType: 'inline'
script: |
# Install brew
brew update
brew outdated carthage || brew upgrade carthage
- task: Xcode@5
displayName: 'Run unit tests'
inputs:
actions: 'test'
configuration: 'Debug'
Expand All @@ -34,3 +34,9 @@ steps:
packageApp: false
destinationPlatformOption: 'iOS'
destinationSimulators: 'iPhone 11'
- task: Bash@3
displayName: 'Post test results to CodeCov'
inputs:
script: |
bash <(curl -s https://codecov.io/bash)

0 comments on commit 5254e70

Please sign in to comment.