-
Notifications
You must be signed in to change notification settings - Fork 523
/
config.yml
37 lines (35 loc) · 920 Bytes
/
config.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
version: 2.0
jobs:
"Test":
docker:
- image: fastlanetools/ci:0.4.0
working_directory: ~/code
steps:
- checkout
- run: sudo pip3 install pipenv
- run: pipenv install
- run: gem install bundler -v $(ruby .ci/bundler_version.rb)
- run: bundle update
- run: pipenv run bundle exec fastlane test
- run: bundle exec rubocop
- run: bundle exec danger || echo "danger failed, moving on"
"Deploy":
docker:
- image: fastlanetools/ci:0.4.0
working_directory: ~/code
steps:
- checkout
- run: sudo pip3 install pipenv
- run: pipenv install
- run: gem install bundler -v $(ruby .ci/bundler_version.rb)
- run: bundle update
- run: pipenv run ./scripts/ci/deploy.sh
workflows:
version: 2
build:
jobs:
- "Test"
- "Deploy":
filters:
branches:
only: master