File tree Expand file tree Collapse file tree 7 files changed +163
-132
lines changed Expand file tree Collapse file tree 7 files changed +163
-132
lines changed Original file line number Diff line number Diff line change 72
72
- run :
73
73
name : Setup Code Climate test-reporter
74
74
command : |
75
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
75
+ curl -L \
76
+ https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > \
77
+ ./cc-test-reporter
76
78
chmod +x ./cc-test-reporter
77
79
- run :
78
80
name : Run specs
@@ -87,7 +89,8 @@ workflows:
87
89
jobs :
88
90
- confirm_config_and_documentation
89
91
90
- # Use `requires: [confirm_config_and_documentation]` to trick Circle CI into starting the slow jruby job early.
92
+ # Use `requires: [confirm_config_and_documentation]` to trick Circle CI into starting the slow
93
+ # jruby job early.
91
94
- rspec :
92
95
requires : [confirm_config_and_documentation]
93
96
matrix :
Original file line number Diff line number Diff line change
1
+ name : Linting
2
+ on :
3
+ - pull_request
4
+ jobs :
5
+ yamllint :
6
+ name : Yamllint
7
+ runs-on : ubuntu-latest
8
+ steps :
9
+ - uses : actions/checkout@v2
10
+ - name : Yamllint
11
+ uses : karancode/yamllint-github-action@master
12
+ with :
13
+ yamllint_comment : true
14
+ env :
15
+ GITHUB_ACCESS_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change 1
1
inherit_from : .rubocop_todo.yml
2
2
3
3
require :
4
- - rubocop-performance
5
- - rubocop-rspec
6
- - rubocop/cop/internal_affairs
4
+ - rubocop-performance
5
+ - rubocop-rspec
6
+ - rubocop/cop/internal_affairs
7
7
8
8
AllCops :
9
9
DisplayCopNames : true
Original file line number Diff line number Diff line change
1
+ extends: default
2
+
3
+ rules:
4
+ comments:
5
+ min-spaces-from-content: 1
6
+ document-start: disable
7
+ line-length:
8
+ allow-non-breakable-inline-mappings: true
9
+ max: 100
10
+ truthy:
11
+ check-keys: false
You can’t perform that action at this time.
0 commit comments