Skip to content

Commit

Permalink
Revert "Reduce dup by moving env and continue-on-error before steps"
Browse files Browse the repository at this point in the history
This reverts commit e265a35.
  • Loading branch information
benoittgt committed Nov 22, 2020
1 parent e265a35 commit 06cb2ce
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,13 +81,16 @@ jobs:
- ruby: 2.2.10
env:
RAILS_VERSION: '~> 5.0.0'
env: ${{ matrix.env }}
continue-on-error: ${{ matrix.allow_failure || false }}
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: false
- run: script/update_rubygems_and_install_bundler
env: ${{ matrix.env }}
- run: script/clone_all_rspec_repos
- run: bundle binstubs rspec rspec-core rake cucumber rails
- run: script/run_build
env: ${{ matrix.env }}
- run: bundle install --binstubs && script/run_build
env: ${{ matrix.env }}
continue-on-error: ${{ matrix.allow_failure || false }}

0 comments on commit 06cb2ce

Please # to comment.