danger-samsao 0.2.0 → 0.3.0

Sign up to get free protection for your applications and to get access to all the features.
data/bitrise.yml DELETED
@@ -1,80 +0,0 @@
1
- ---
2
- format_version: 1.4.0
3
- default_step_lib_source: https://github.com/bitrise-io/bitrise-steplib.git
4
-
5
- workflows:
6
- # Main Workflows
7
-
8
- develop:
9
- before_run:
10
- - _setup
11
-
12
- after_run:
13
- - _teardown
14
-
15
- pr:
16
- before_run:
17
- - _setup
18
-
19
- after_run:
20
- - _teardown
21
-
22
- # Composite Workflows
23
-
24
- _setup:
25
- before_run:
26
- - _cache_pull
27
- - _prepare
28
- - _danger
29
- - _lint
30
- - _test
31
-
32
- _teardown:
33
- after_run:
34
- - _cache_push
35
-
36
- # Private workflows
37
-
38
- _cache_push:
39
- steps:
40
- - cache-push@0.9.4:
41
- title: Push cache
42
- run_if: .IsCI
43
- inputs:
44
- - cache_paths: |-
45
- $HOME/.bundle
46
-
47
- _cache_pull:
48
- steps:
49
- - cache-pull@0.9.2:
50
- title: Pull cache
51
-
52
- _danger:
53
- steps:
54
- - script@1.1.3:
55
- title: Danger
56
- run_if: .IsPR
57
- inputs:
58
- - content: |-
59
- bundle exec danger
60
-
61
- _lint:
62
- steps:
63
- - script@1.1.3:
64
- title: Linting
65
- inputs:
66
- - content: bundle exec rake lint
67
-
68
- _prepare:
69
- steps:
70
- - script@1.1.3:
71
- title: Prepare (installing dependencies)
72
- inputs:
73
- - content: bundle install
74
-
75
- _test:
76
- steps:
77
- - script@1.1.3:
78
- title: Tests
79
- inputs:
80
- - content: bundle exec rake tests