Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -140,13 +140,15 @@ jobs:
- name: Let Rails generate the secret_key_base
run: bundle exec rails runner 'puts Rails.application.secret_key_base'
- name: Setup Database
run: bundle exec rails parallel:load_schema
- name: Precompile assets
run: bundle exec rails assets:precompile
run: |
bundle exec rails parallel:load_schema
bundle exec rails parallel:migrate
- name: Check for untracked changes in schema.rb
uses: rootstrap/check_untracked_changes@v1
with:
path: "./db/schema.rb"
- name: Precompile assets
run: bundle exec rails assets:precompile
- name: Get CPU info
id: cpu_info
run: echo "cpu_cores=$(nproc)" >> $GITHUB_ENV
Expand Down