-
-
Notifications
You must be signed in to change notification settings - Fork 263
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Control over bundle install #201
Comments
I see at https://github.com/actions/starter-workflows/blob/master/ci/ruby.yml and https://docs.github.com/en/actions/guides/building-and-testing-ruby that the use a Update: I tried it and it doesn't override the one made by |
try a workaround for ruby/setup-ruby#201
That's an old master branch. Here is the current state: https://github.com/actions/starter-workflows/blob/main/ci/ruby.yml I believe https://github.com/ruby/setup-ruby#bundle-config already answers your questions. |
Thanks, I'll give it a try. |
In a gemspec file it's common to have
add_runtime_dependency
andadd_development_dependency
to create aruntime
anddevelopment
group in Gemfile. Following this answer, one that wan to only install runtime dependencies could do one of the following:Maybe the other way around work too
The issue is that this template seems to do a classic
bundle install
and doesn't provide any way to configure it.Also #38 wouldn't have been an issue if we would have been able to run:
The text was updated successfully, but these errors were encountered: