We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b1edec commit fae4102Copy full SHA for fae4102
.github/workflows/postgres.yml
@@ -27,6 +27,7 @@ jobs:
27
env:
28
RAILS_ENV: test
29
DATABASE_URL: postgres://postgres:@localhost:5432/roadmap_test
30
+ DISABLE_SPRING: 1
31
32
steps:
33
# Checkout the repo
@@ -79,12 +80,12 @@ jobs:
79
80
# Initialize the DB
81
- name: 'Setup Test DB'
82
run: |
- DISABLE_SPRING=1 RAILS_ENV=test bundle exec rails db:setup
83
- DISABLE_SPRING=1 RAILS_ENV=test bundle exec rails db:migrate
+ bundle exec rails db:setup
84
+ bundle exec rails db:migrate
85
86
# Prebuild the CSS, JS and image assets
87
- name: 'Compile Assets'
- run: DISABLE_SPRING=1 bundle exec rails assets:precompile
88
+ run: bundle exec rails assets:precompile
89
90
# Run the unit and functional tests
91
- name: 'Run Rspec Unit and Functional Tests'
0 commit comments