Skip to content

Commit

Permalink
Install dependencies without development,test
Browse files Browse the repository at this point in the history
  • Loading branch information
etagwerker committed Oct 8, 2024
1 parent 7524219 commit 3f7232f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check_bundler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
gem install bundler -v ${{ github.event.inputs.bundler_version }}
- name: Install dependencies
run: bundle _${{ github.event.inputs.bundler_version }}_ install
run: bundle _${{ github.event.inputs.bundler_version }}_ install --without development,test

- name: Run check_bundler script
run: ./exe/check_bundler.sh --compat_id '${{ github.event.inputs.compat_id }}' --rails_version '${{ github.event.inputs.rails_version }}' --dependencies '${{ github.event.inputs.dependencies }}'
2 changes: 1 addition & 1 deletion .github/workflows/rails_release_sanity_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
gem install bundler -v ${{ github.event.inputs.bundler_version }}
- name: Install dependencies
run: bundle _${{ github.event.inputs.bundler_version }}_ install
run: bundle _${{ github.event.inputs.bundler_version }}_ install --without development,test

- name: Run check_bundler script
run: ./exe/check_rails_release.sh --rails_version '${{ github.event.inputs.rails_version }}'

0 comments on commit 3f7232f

Please sign in to comment.