Skip to content

Commit 7a8ba5d

Browse files
committed
Fix workflow action
1 parent 6bad2f0 commit 7a8ba5d

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

Diff for: .github/workflows/macos.yaml

+7-7
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ name: macos
55
on: [push, pull_request]
66

77
jobs:
8-
rubocop:
8+
rubocop:
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
@@ -22,12 +22,12 @@ jobs:
2222
bundle exec rubocop -D .
2323
bundle exec rspec --backtrace
2424
25-
TestSomething:
25+
TestSomething:
2626
runs-on: macos-latest
2727
steps:
2828
- uses: actions/checkout@v2
2929
- uses: ruby/setup-ruby@v1
30-
with:
30+
with:
3131
ruby-version: 2.6
3232

3333
# Install and run Arduino CI tests for TestSomething
@@ -39,12 +39,12 @@ jobs:
3939
bundle install
4040
bundle exec arduino_ci.rb
4141
42-
NetworkLib:
42+
NetworkLib:
4343
runs-on: macos-latest
4444
steps:
4545
- uses: actions/checkout@v2
4646
- uses: ruby/setup-ruby@v1
47-
with:
47+
with:
4848
ruby-version: 2.6
4949

5050
# Install and run Arduino CI tests for NetworkLib
@@ -53,6 +53,6 @@ jobs:
5353
g++ -v
5454
bundle install
5555
cd SampleProjects/NetworkLib
56-
./scripts/install.sh
56+
sh ./scripts/install.sh
5757
bundle install
5858
bundle exec arduino_ci.rb

0 commit comments

Comments
 (0)