Skip to content

Commit

Permalink
run bundle install an additional time in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
vtnate committed Sep 5, 2024
1 parent 0364711 commit a3a434b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/nightly_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,9 @@ jobs:
- name: List OpenStudio measures
run: bundle exec rake openstudio:list_measures
- name: Update OpenStudio measures
run: bundle exec rake openstudio:update_measures
run: |
bundle install
bundle exec rake openstudio:update_measures
- name: Test OpenStudio measures
run: bundle exec rake openstudio:test_with_openstudio
- name: Run Rspec
Expand Down

0 comments on commit a3a434b

Please sign in to comment.