Skip to content

Commit

Permalink
ci: Add JRuby to the test matrix
Browse files Browse the repository at this point in the history
Makr jruby tests as flaky for now.
  • Loading branch information
ixti committed Jun 23, 2022
1 parent 85f7ddb commit 6bf9115
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 1 deletion.
20 changes: 20 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,26 @@ jobs:
path-to-lcov: ./coverage/lcov/lcov.info
parallel: true

test-flaky:
runs-on: ${{ matrix.os }}

strategy:
matrix:
ruby: [ jruby-9.3 ]
os: [ ubuntu-latest ]

steps:
- uses: actions/checkout@v3

- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true

- name: bundle exec rspec
continue-on-error: true
run: bundle exec rspec --format progress --force-colour

coveralls:
needs: test
runs-on: ubuntu-latest
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,8 @@ the following Ruby versions:
- Ruby 2.6
- Ruby 2.7
- Ruby 3.0
- JRuby 9.2
- Ruby 3.1
- JRuby 9.3

If something doesn't work on one of these versions, it's a bug.

Expand Down

0 comments on commit 6bf9115

Please sign in to comment.