Skip to content

Commit

Permalink
Try continuing when bundle install fails
Browse files Browse the repository at this point in the history
  • Loading branch information
bkeepers committed Dec 13, 2024
1 parent eb14723 commit 882de31
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,15 @@ jobs:
- name: Check out repository code
uses: actions/checkout@v4
- name: Set up Ruby
id: setup-ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
ruby-version: ${{ matrix.ruby }}
continue-on-error: true
- name: Incompatible Versions
if: steps.setup-ruby.outcome == 'failure'
run: echo "Ruby ${{ matrix.ruby }} is not supported with Rails ${{ matrix.rails }}"
- name: Run Rake
if: steps.setup-ruby.outcome != 'failure'
run: bundle exec rake

0 comments on commit 882de31

Please sign in to comment.