-
Notifications
You must be signed in to change notification settings - Fork 225
Conversation
9781bee
to
795d3e7
Compare
bd0d585
to
5be3e52
Compare
- uses: actions/checkout@v2 | ||
name: Checkout | ||
|
||
- uses: ruby/setup-ruby@v1 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Using ruby/setup-ruby
action over actions/setup-ruby
since actions/setup-ruby will be deprecated
.github/workflows/ruby-ci.yml
Outdated
- name: 📦 Install dependencies | ||
run: | | ||
bundle config set ignore_messages true | ||
bundle install |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
bundle install --clean
ran into various issues, wondering if this is okay
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it's fine 👍 I think we should add --frozen
so we are sure the Gemfile is not updated.
bundle install | |
bundle install --frozen |
bundler-cache: true | ||
- name: 📦 Install dependencies | ||
run: | | ||
bundle config set ignore_messages true |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ignores the post install message ..."HEADS UP! i18n 1.1 changed fallbacks to exclude default locale....", example here
Will need to edit branch protection to remove the required "continuous-integration/travis-ci" check, and add Github Actions check after this is merged. |
.github/workflows/ruby-ci.yml
Outdated
- name: 📦 Install dependencies | ||
run: | | ||
bundle config set ignore_messages true | ||
bundle install |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it's fine 👍 I think we should add --frozen
so we are sure the Gemfile is not updated.
bundle install | |
bundle install --frozen |
Thank you @mllemango to take over this PR ❤️ Everything looks 💯 to me ✅ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🙇
fceb67d
to
de65419
Compare
Description
Fixes (issue #)
Type of change
Checklist