File tree Expand file tree Collapse file tree 1 file changed +16
-5
lines changed Expand file tree Collapse file tree 1 file changed +16
-5
lines changed Original file line number Diff line number Diff line change @@ -4,23 +4,34 @@ name: windows
4
4
on : [push, pull_request]
5
5
6
6
jobs :
7
- " rubocop_and_rspec " :
7
+ " rubocop " :
8
8
runs-on : windows-latest
9
9
steps :
10
10
- uses : actions/checkout@v2
11
11
- uses : ruby/setup-ruby@v1
12
12
with :
13
13
ruby-version : 2.6
14
- - name : Check style and functionality
14
+ - name : Check style
15
15
run : |
16
16
g++ -v
17
17
bundle install
18
18
bundle exec rubocop --version
19
- bundle exec rubocop -D .
20
- echo "done with Rubocop (See https://github.com/Arduino-CI/arduino_ci/issues/315)"
19
+ bundle exec rubocop -D . --except Layout/EndOfLine
20
+
21
+ " rspec " :
22
+ runs-on : windows-latest
23
+ steps :
24
+ - uses : actions/checkout@v2
25
+ - uses : ruby/setup-ruby@v1
26
+ with :
27
+ ruby-version : 2.6
28
+ - name : Check functionality
29
+ run : |
30
+ g++ -v
31
+ bundle install
21
32
bundle exec rspec --backtrace
22
33
23
- " TestSomething " :
34
+ TestSomething :
24
35
runs-on : windows-latest
25
36
steps :
26
37
- uses : actions/checkout@v2
You can’t perform that action at this time.
0 commit comments