Skip to content

Commit 86b52c7

Browse files
Fix quoting for RAILS_ENV in background server startup commands
1 parent a1b8a98 commit 86b52c7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/pro-integration-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ jobs:
207207
- name: Run Rails server in background
208208
run: |
209209
cd spec/dummy
210-
RAILS_ENV=test rails server &
210+
RAILS_ENV="test" rails server &
211211
212212
- name: Wait for Rails server to start
213213
run: |
@@ -392,7 +392,7 @@ jobs:
392392
- name: Run Rails server in background
393393
run: |
394394
cd spec/dummy
395-
RAILS_ENV=test rails server &
395+
RAILS_ENV="test" rails server &
396396
397397
- name: Wait for Rails server to start
398398
run: |

0 commit comments

Comments
 (0)