File tree 1 file changed +21
-8
lines changed
1 file changed +21
-8
lines changed Original file line number Diff line number Diff line change @@ -5,29 +5,42 @@ name: macos
5
5
on : [push, pull_request]
6
6
7
7
jobs :
8
- rubocop :
8
+ rspec :
9
9
runs-on : macos-latest
10
10
steps :
11
11
- uses : actions/checkout@v2
12
12
- uses : ruby/setup-ruby@v1
13
- with :
13
+ with :
14
14
ruby-version : 2.6
15
15
16
16
# Install and run Arduino CI tests for rubocop
17
17
- name : Build and Execute
18
18
run : |
19
19
g++ -v
20
+ bundle install
21
+ bundle exec rspec --backtrace
22
+
23
+ rubocop :
24
+ runs-on : macos-latest
25
+ steps :
26
+ - uses : actions/checkout@v2
27
+ - uses : ruby/setup-ruby@v1
28
+ with :
29
+ ruby-version : 2.6
30
+
31
+ # Install and run Arduino CI tests for rubocop
32
+ - name : Build and Execute
33
+ run : |
20
34
bundle install
21
35
bundle exec rubocop --version
22
36
bundle exec rubocop -D .
23
- bundle exec rspec --backtrace
24
37
25
- TestSomething :
38
+ TestSomething :
26
39
runs-on : macos-latest
27
40
steps :
28
41
- uses : actions/checkout@v2
29
42
- uses : ruby/setup-ruby@v1
30
- with :
43
+ with :
31
44
ruby-version : 2.6
32
45
33
46
# Install and run Arduino CI tests for TestSomething
@@ -39,12 +52,12 @@ jobs:
39
52
bundle install
40
53
bundle exec arduino_ci.rb
41
54
42
- NetworkLib :
55
+ NetworkLib :
43
56
runs-on : macos-latest
44
57
steps :
45
58
- uses : actions/checkout@v2
46
59
- uses : ruby/setup-ruby@v1
47
- with :
60
+ with :
48
61
ruby-version : 2.6
49
62
50
63
# Install and run Arduino CI tests for NetworkLib
53
66
g++ -v
54
67
bundle install
55
68
cd SampleProjects/NetworkLib
56
- ./scripts/install.sh
69
+ sh ./scripts/install.sh
57
70
bundle install
58
71
bundle exec arduino_ci.rb
You can’t perform that action at this time.
0 commit comments