Skip to content

Commit

Permalink
Handle experimental builds better
Browse files Browse the repository at this point in the history
  • Loading branch information
mshibuya committed Mar 18, 2023
1 parent 1dc6de5 commit c290f51
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Expand Up @@ -31,9 +31,9 @@ jobs:
gemfile: gemfiles/rails-6-1.gemfile
experimental: true
runs-on: ubuntu-20.04
continue-on-error: ${{ matrix.experimental }}
env:
BUNDLE_GEMFILE: ${{ matrix.gemfile }}
EXPERIMENTAL: ${{ matrix.experimental }}
JRUBY_OPTS: --debug
steps:
- uses: actions/checkout@v3
Expand All @@ -51,9 +51,9 @@ jobs:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run RSpec
run: bundle exec rake spec || [ "$EXPERIMENTAL" == "true" ] && true
run: bundle exec rake spec
- name: Run Cucumber
run: bundle exec rake features || [ "$EXPERIMENTAL" == "true" ] && true
run: bundle exec rake features

rubocop:
name: RuboCop
Expand Down

0 comments on commit c290f51

Please sign in to comment.