Skip to content

Commit

Permalink
Allow JRuby to fail, as it isn't supported yet
Browse files Browse the repository at this point in the history
Issue tracking support: sinatra#72
  • Loading branch information
dentarg committed Jul 19, 2022
1 parent 3f90505 commit fd96210
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ on:
push:
pull_request:

# GitHub Actions notes
# - outcome in step name so we can see it without having to expand logs
# - every step must define a `uses` or `run` key

jobs:
test:
name: Test with Ruby-${{ matrix.ruby }}
Expand All @@ -13,12 +17,22 @@ jobs:
fail-fast: false
matrix:
# Due to https://github.com/actions/runner/issues/849, we have to use quotes for '3.0'
ruby: [2.6, 2.7, '3.0', 3.1, 'jruby-9.3']
ruby: [2.6, 2.7, '3.0', 3.1]
include:
- { ruby: jruby-9.3, allow-failure: true }
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
continue-on-error: ${{ matrix.allow-failure || false }}
id: bundle
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: "setup-ruby and bundle install outcome: ${{ steps.bundle.outcome }}"
run: echo ""
- name: Run tests
continue-on-error: ${{ matrix.allow-failure || false }}
id: test
run: bundle exec rake
- name: "bundle exec rake outcome: ${{ steps.test.outcome }}"
run: echo ""

0 comments on commit fd96210

Please sign in to comment.