File tree 1 file changed +7
-12
lines changed
1 file changed +7
-12
lines changed Original file line number Diff line number Diff line change @@ -56,14 +56,11 @@ jobs:
56
56
uses : ruby/setup-ruby@v1
57
57
with :
58
58
ruby-version : 3.2
59
- - name : Install dependencies
60
- run : bundle install
61
-
62
- # Run tests
63
- - run : bundle exec ruby example_sample2_ios.rb
64
- name : Run tests
65
- working-directory :
66
- example/ruby
59
+ - name : Install deps and run tests
60
+ run : |
61
+ bundle install
62
+ bundle exec ruby example_sample2_ios.rb
63
+ working-directory : example/ruby
67
64
68
65
- name : Save server output
69
66
if : ${{ always() }}
@@ -130,19 +127,17 @@ jobs:
130
127
uses : ruby/setup-ruby@v1
131
128
with :
132
129
ruby-version : 3.2
133
- - name : Install dependencies
134
- run : bundle install
135
- working-directory : example/ruby
136
130
137
131
# Run tests
138
132
139
- - name : run tests
133
+ - name : Install dependencies and run tests
140
134
uses : reactivecircus/android-emulator-runner@v2
141
135
with :
142
136
api-level : ${{ env.API_LEVEL }}
143
137
arch : ${{ env.ARCH }}
144
138
script : |
145
139
cd example/ruby
140
+ bundle install
146
141
bundle exec ruby example_sample2.rb
147
142
target : google_apis
148
143
profile : Nexus 5X
You can’t perform that action at this time.
0 commit comments