tuist/.circleci/config.yml

26 lines
648 B
YAML
Raw Normal View History

2018-06-29 13:00:58 +08:00
version: 2
jobs:
build:
macos:
xcode: '10.0.0'
2018-06-29 13:00:58 +08:00
steps:
- checkout
- run:
name: Install Dependencies
command: |
brew install swiftlint
- run:
name: Generate Xcode project
command: |
swift package generate-xcodeproj
- run:
name: Build for release
command: |
swift build -c release
2018-06-29 13:00:58 +08:00
- run:
name: Run tests
2018-07-23 19:59:52 +08:00
command: xcodebuild test -scheme tuist-Package -enableCodeCoverage YES
2018-06-29 13:00:58 +08:00
- run:
name: Send test coverage report
command: bash <(curl -s https://codecov.io/bash)