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: #72
  • Loading branch information
dentarg committed Jul 19, 2022
1 parent f7cf2f3 commit 3a43b4a
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .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 @@ -14,11 +18,21 @@ jobs:
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', truffleruby]
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 3a43b4a

Please sign in to comment.