File tree Expand file tree Collapse file tree 1 file changed +21
-8
lines changed Expand file tree Collapse file tree 1 file changed +21
-8
lines changed Original file line number Diff line number Diff line change @@ -5,29 +5,42 @@ name: macos
55on : [push, pull_request]
66
77jobs :
8- rubocop :
8+ rspec :
99 runs-on : macos-latest
1010 steps :
1111 - uses : actions/checkout@v2
1212 - uses : ruby/setup-ruby@v1
13- with :
13+ with :
1414 ruby-version : 2.6
1515
1616 # Install and run Arduino CI tests for rubocop
1717 - name : Build and Execute
1818 run : |
1919 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 : |
2034 bundle install
2135 bundle exec rubocop --version
2236 bundle exec rubocop -D .
23- bundle exec rspec --backtrace
2437
25- TestSomething :
38+ TestSomething :
2639 runs-on : macos-latest
2740 steps :
2841 - uses : actions/checkout@v2
2942 - uses : ruby/setup-ruby@v1
30- with :
43+ with :
3144 ruby-version : 2.6
3245
3346 # Install and run Arduino CI tests for TestSomething
@@ -39,12 +52,12 @@ jobs:
3952 bundle install
4053 bundle exec arduino_ci.rb
4154
42- NetworkLib :
55+ NetworkLib :
4356 runs-on : macos-latest
4457 steps :
4558 - uses : actions/checkout@v2
4659 - uses : ruby/setup-ruby@v1
47- with :
60+ with :
4861 ruby-version : 2.6
4962
5063 # Install and run Arduino CI tests for NetworkLib
5366 g++ -v
5467 bundle install
5568 cd SampleProjects/NetworkLib
56- ./scripts/install.sh
69+ sh ./scripts/install.sh
5770 bundle install
5871 bundle exec arduino_ci.rb
You can’t perform that action at this time.
0 commit comments