File tree Expand file tree Collapse file tree 1 file changed +24
-3
lines changed Expand file tree Collapse file tree 1 file changed +24
-3
lines changed Original file line number Diff line number Diff line change @@ -123,7 +123,7 @@ jobs:
123
123
AZURE_PRINCIPAL_ID : ${{ secrets.AZURE_PRINCIPAL_ID }}
124
124
run : bundle exec rake test_azurite
125
125
126
- test :
126
+ client_test :
127
127
runs-on : ubuntu-latest
128
128
steps :
129
129
- name : Install dependencies
@@ -134,11 +134,32 @@ jobs:
134
134
uses : ruby/setup-ruby@v1
135
135
with :
136
136
bundler-cache : true
137
- - name : Tests
137
+ - name : Client tests
138
138
env :
139
139
AZURE_ACCOUNT_NAME : ${{secrets.AZURE_ACCOUNT_NAME}}
140
140
AZURE_ACCESS_KEY : ${{secrets.AZURE_ACCESS_KEY}}
141
141
AZURE_PRIVATE_CONTAINER : ${{secrets.AZURE_PRIVATE_CONTAINER}}
142
142
AZURE_PUBLIC_CONTAINER : ${{secrets.AZURE_PUBLIC_CONTAINER}}
143
143
AZURE_PRINCIPAL_ID : ${{secrets.AZURE_PRINCIPAL_ID}}
144
- run : bundle exec rake test
144
+ run : bundle exec rake test_client
145
+
146
+ rails_test :
147
+ runs-on : ubuntu-latest
148
+ steps :
149
+ - name : Install dependencies
150
+ run : sudo apt-get install -y libvips sqlite3 libsqlite3-dev
151
+ - name : Checkout
152
+ uses : actions/checkout@v4
153
+ - name : Setup ruby
154
+ uses : ruby/setup-ruby@v1
155
+ with :
156
+ bundler-cache : true
157
+ - name : Rails tests
158
+ env :
159
+ AZURE_ACCOUNT_NAME : ${{secrets.AZURE_ACCOUNT_NAME}}
160
+ AZURE_ACCESS_KEY : ${{secrets.AZURE_ACCESS_KEY}}
161
+ AZURE_PRIVATE_CONTAINER : ${{secrets.AZURE_PRIVATE_CONTAINER}}
162
+ AZURE_PUBLIC_CONTAINER : ${{secrets.AZURE_PUBLIC_CONTAINER}}
163
+ AZURE_PRINCIPAL_ID : ${{secrets.AZURE_PRINCIPAL_ID}}
164
+ run : bundle exec rake test_rails
165
+
You can’t perform that action at this time.
0 commit comments